PermissionType Property
The type entity to which the permission applies.
Syntax
public int getPermissionType(); public void setPermissionType(int permissionType);
Enumerated values: public final static int gdptUser = 0; public final static int gdptGroup = 1; public final static int gdptDomain = 2; public final static int gdptAnyone = 3;
Remarks
This property defines the type of entity to which the permission applies. This property works in conjunction with PermissionValue to define a user, group, or domain that the actual permission role defined in PermissionRole applies to.
Possible values are:
0 (gdptUser - default) | A single user. |
1 (gdptGroup) | A group. |
2 (gdptDomain) | A domain. |
3 (gdptAnyone) | Anyone, authenticated or not. |
This property is not available at design time.
Default Value
0