Created
June 4, 2009 16:40
-
-
Save kofno/123699 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @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