Class Authorizers
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="userGroupProvider" type="{}UserGroupProvider" maxOccurs="unbounded" minOccurs="0"/>
<element name="accessPolicyProvider" type="{}AccessPolicyProvider" maxOccurs="unbounded" minOccurs="0"/>
<element name="authorizer" type="{}Authorizer" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<AccessPolicyProvider> protected List<Authorizer> protected List<UserGroupProvider> -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the accessPolicyProvider property.Gets the value of the authorizer property.Gets the value of the userGroupProvider property.
-
Field Details
-
userGroupProvider
-
accessPolicyProvider
-
authorizer
-
-
Constructor Details
-
Authorizers
public Authorizers()
-
-
Method Details
-
getUserGroupProvider
Gets the value of the userGroupProvider property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the userGroupProvider property.For example, to add a new item, do as follows:
getUserGroupProvider().add(newItem);
Objects of the following type(s) are allowed in the list
UserGroupProvider- Returns:
- The value of the userGroupProvider property.
-
getAccessPolicyProvider
Gets the value of the accessPolicyProvider property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the accessPolicyProvider property.For example, to add a new item, do as follows:
getAccessPolicyProvider().add(newItem);
Objects of the following type(s) are allowed in the list
AccessPolicyProvider- Returns:
- The value of the accessPolicyProvider property.
-
getAuthorizer
Gets the value of the authorizer property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the authorizer property.For example, to add a new item, do as follows:
getAuthorizer().add(newItem);
Objects of the following type(s) are allowed in the list
Authorizer- Returns:
- The value of the authorizer property.
-