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 intDOMAIN_ACCOUNTstatic intLOCAL_ACCOUNT
-
Constructor Summary
Constructors Constructor Description GroupSpecification()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAccountScope()java.lang.StringgetAuthority()java.lang.StringgetGroupName()UserSpecification[]getUsers()java.lang.ObjectgetValue(java.lang.String attributeName)Get a platform specific attribute from the GroupSpecificationvoidsetAccountScope(int accountScope)voidsetAuthority(java.lang.String authority)voidsetGroupName(java.lang.String groupName)voidsetUsers(UserSpecification[] users)voidsetValue(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.
-
-