Class GroupSpecification
- java.lang.Object
-
- com.installshield.wizard.service.security.GroupSpecification
-
- All Implemented Interfaces:
PropertyAccessible
public class GroupSpecification extends java.lang.Object implements PropertyAccessible
NOTE : This API is for internal use. Customer use is not recommended.
-
-
Field Summary
Fields Modifier and Type Field Description static int
DOMAIN_ACCOUNT
static int
LOCAL_ACCOUNT
-
Constructor Summary
Constructors Constructor Description GroupSpecification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAccountScope()
java.lang.String
getAuthority()
java.lang.String
getGroupName()
UserSpecification[]
getUsers()
java.lang.Object
getValue(java.lang.String attributeName)
Get a platform specific attribute from the GroupSpecificationvoid
setAccountScope(int accountScope)
void
setAuthority(java.lang.String authority)
void
setGroupName(java.lang.String groupName)
void
setUsers(UserSpecification[] users)
void
setValue(java.lang.String attributeName, java.lang.Object value)
Add a platform specific attribute to the GroupSpecification
-
-
-
Field Detail
-
LOCAL_ACCOUNT
public static final int LOCAL_ACCOUNT
- See Also:
- Constant Field Values
-
DOMAIN_ACCOUNT
public static final int DOMAIN_ACCOUNT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGroupName
public java.lang.String getGroupName()
-
setGroupName
public void setGroupName(java.lang.String groupName)
-
getUsers
public UserSpecification[] getUsers()
-
setUsers
public void setUsers(UserSpecification[] users)
-
setAuthority
public void setAuthority(java.lang.String authority)
-
getAuthority
public java.lang.String getAuthority()
-
setValue
public void setValue(java.lang.String attributeName, java.lang.Object value)
Add a platform specific attribute to the GroupSpecification
-
getValue
public java.lang.Object getValue(java.lang.String attributeName)
Get a platform specific attribute from the GroupSpecification
-
getAccountScope
public int getAccountScope()
- Returns:
- Returns the accountType.
-
setAccountScope
public void setAccountScope(int accountScope)
- Parameters:
accountType
- The accountType to set.
-
-