Class ResourceGrants
- All Implemented Interfaces:
Serializable
Java class for anonymous complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<extension base="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}extension">
<sequence>
<element name="resourceName" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="grantedActions" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}valuelist"/>
<element name="deniedActions" type="{http://xmlns.oracle.com/cgbu/schemas/BusinessObjs}valuelist"/>
</sequence>
</extension>
</complexContent>
</complexType>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the deniedActions property.Gets the value of the grantedActions property.The name of the resource being granted.voidsetResourceName(String value) Sets the value of the resourceName property.Methods inherited from class com.oracle.communications.brm.cc.model.Extension
getExtension, setExtension
-
Field Details
-
resourceName
The name of the resource being granted. -
grantedActions
-
deniedActions
-
-
Constructor Details
-
ResourceGrants
public ResourceGrants()
-
-
Method Details
-
getResourceName
The name of the resource being granted.- Returns:
- possible object is
String
-
setResourceName
Sets the value of the resourceName property.- Parameters:
value- allowed object isString- See Also:
-
getGrantedActions
Gets the value of the grantedActions 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 grantedActions property.For example, to add a new item, do as follows:
getGrantedActions().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the grantedActions property.
-
getDeniedActions
Gets the value of the deniedActions 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 deniedActions property.For example, to add a new item, do as follows:
getDeniedActions().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the deniedActions property.
-