Reputation: 62234
Our company is providing a service where a user can register and upload files. After login, a user can see access his uploaded files, upload more files, analyze them etc.
This works fine but we would also like to provide something like an anonymous/guest login, where users still can upload files but which are not accessible any more as soon as the session expires (after about 8 hours).
How would I implement something like that with Shiro? I know Shiro has the notion of an anonymous user but it seems I am not able to add permissions to him.
Upvotes: 2
Views: 703
Reputation: 4016
You can just create a real user for this (with user/pass guest/guest) and add the correct permissions to it.
Upvotes: 1