Skip to content
Snippets Groups Projects
Commit fd65fa36 authored by Patrick Dowler's avatar Patrick Dowler
Browse files

added javadoc to constructor

parent f291d6e1
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,14 @@ public class GroupAuthorizer implements Authorizer ...@@ -87,6 +87,14 @@ public class GroupAuthorizer implements Authorizer
private GroupURI groupURI; private GroupURI groupURI;
private GroupAuthorizer() { }
/**
* Create an authorizer that allows members of the specified group and denies
* all other users. The string argument must be a valid GroupURI.
*
* @param uri group identifier for the allow group
*/
public GroupAuthorizer(String uri) public GroupAuthorizer(String uri)
{ {
try try
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment