Package com.ibm.wsspi.security.wim.model
Class CheckGroupMembershipControl
- java.lang.Object
- 
- com.ibm.wsspi.security.wim.model.Control
- 
- com.ibm.wsspi.security.wim.model.CheckGroupMembershipControl
 
 
- 
 public class CheckGroupMembershipControl extends Control Java class for CheckGroupMembershipControl complex type. The following schema fragment specifies the expected content contained within this class. <complexType name="CheckGroupMembershipControl"> <complexContent> <extension base="{http://www.ibm.com/websphere/wim}Control"> <attribute name="level" type="{http://www.w3.org/2001/XMLSchema}int" default="1" /> <attribute name="inGroup" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </extension> </complexContent> </complexType>The CheckGroupMembershipControl object extends the Control object and defines two properties: level and inGroup. In order to check whether a group contains a member or not, the caller can issue the get() API call with one group object and one member object, and with the CheckGroupMembershipControl. The underlying repository will be checked and a boolean value will be returned in the CheckGroupMembershipControl object of the returned Root object to indicate the membership relationship, i.e, if the member is a part of the group. - level: indicates the level of members to be returned.
- inGroup: indicates the result in the returned Root object after checking the group membership.
 
- 
- 
Constructor SummaryConstructors Constructor Description CheckGroupMembershipControl()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectget(java.lang.String propName)Gets the value of the requested propertyjava.lang.StringgetDataType(java.lang.String propName)Gets the Java type of the value of the provided property.intgetLevel()Gets the value of the level property.static java.util.ListgetPropertyNames(java.lang.String entityTypeName)Gets a list of all supported properties for this model object, CheckGroupMembershipControlstatic java.util.HashSetgetSubTypes()Gets a set of any model objects which extend this model object, CheckGroupMembershipControljava.util.ArrayListgetSuperTypes()Gets a list of any model objects which this model object, CheckGroupMembershipControl, is an extension of.java.lang.StringgetTypeName()Gets the name of this model object, CheckGroupMembershipControlbooleanisInGroup()Gets the value of the inGroup property.booleanisSet(java.lang.String propName)Returns true if the requested property is set; false, otherwise.booleanisSetInGroup()Returns true if the inGroup property is set; false, otherwise.booleanisSetLevel()Returns true if the level property is set; false, otherwise.booleanisSubType(java.lang.String superTypeName)Returns a true if the provided model object is one that this model object extends; false, otherwise.voidset(java.lang.String propName, java.lang.Object value)Sets the value of the provided property to the provided value.voidsetInGroup(boolean value)Sets the value of the inGroup property.voidsetLevel(int value)Sets the value of the level property.java.lang.StringtoString()Returns this model object, CheckGroupMembershipControl, and its contents as a Stringvoidunset(java.lang.String propName)Sets the value of provided property to null.voidunsetInGroup()Resets the inGroup property to null.voidunsetLevel()Resets the level property to null.
 
- 
- 
- 
Method Detail- 
getLevelpublic int getLevel() Gets the value of the level property.- Returns:
- possible object is Integer
 
 - 
setLevelpublic void setLevel(int value) Sets the value of the level property.- Parameters:
- value- allowed object is- Integer
 
 - 
isSetLevelpublic boolean isSetLevel() Returns true if the level property is set; false, otherwise.- Returns:
- returned object is boolean
 
 - 
unsetLevelpublic void unsetLevel() Resets the level property to null.
 - 
isInGrouppublic boolean isInGroup() Gets the value of the inGroup property.- Returns:
- possible object is Boolean
 
 - 
setInGrouppublic void setInGroup(boolean value) Sets the value of the inGroup property.- Parameters:
- value- allowed object is- Boolean
 
 - 
isSetInGrouppublic boolean isSetInGroup() Returns true if the inGroup property is set; false, otherwise.- Returns:
- returned object is boolean
 
 - 
unsetInGrouppublic void unsetInGroup() Resets the inGroup property to null.
 - 
getpublic java.lang.Object get(java.lang.String propName) Gets the value of the requested property
 - 
isSetpublic boolean isSet(java.lang.String propName) Returns true if the requested property is set; false, otherwise.
 - 
setpublic void set(java.lang.String propName, java.lang.Object value)Sets the value of the provided property to the provided value.
 - 
unsetpublic void unset(java.lang.String propName) Sets the value of provided property to null.
 - 
getTypeNamepublic java.lang.String getTypeName() Gets the name of this model object, CheckGroupMembershipControl- Overrides:
- getTypeNamein class- Control
- Returns:
- returned object is String
 
 - 
getPropertyNamespublic static java.util.List getPropertyNames(java.lang.String entityTypeName) Gets a list of all supported properties for this model object, CheckGroupMembershipControl- Parameters:
- entityTypeName- allowed object is- String
- Returns:
- returned object is List
 
 - 
getDataTypepublic java.lang.String getDataType(java.lang.String propName) Gets the Java type of the value of the provided property. For example: String, List- Overrides:
- getDataTypein class- Control
- Parameters:
- propName- allowed object is- String
- Returns:
- returned object is String
 
 - 
getSuperTypespublic java.util.ArrayList getSuperTypes() Gets a list of any model objects which this model object, CheckGroupMembershipControl, is an extension of.- Overrides:
- getSuperTypesin class- Control
- Returns:
- returned object is ArrayList
 
 - 
isSubTypepublic boolean isSubType(java.lang.String superTypeName) Returns a true if the provided model object is one that this model object extends; false, otherwise.
 - 
getSubTypespublic static java.util.HashSet getSubTypes() Gets a set of any model objects which extend this model object, CheckGroupMembershipControl- Returns:
- returned object is HashSet
 
 
- 
 
-