Skip to content

Instantly share code, notes, and snippets.

@kofno
Created June 4, 2009 16:40
Show Gist options
  • Select an option

  • Save kofno/123699 to your computer and use it in GitHub Desktop.

Select an option

Save kofno/123699 to your computer and use it in GitHub Desktop.
/**
* @param ownerType the type of ACL owner : user or role
* @param ownerName the name or the user or role
* @param rights
*/
public SecurityOwner(int ownerType, String ownerName, int rights)
{
this.ownerType = ownerType;
this.ownerName = ownerName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment