Class ResourceGrants

java.lang.Object
com.oracle.communications.brm.cc.model.Extension
com.oracle.communications.brm.cc.model.ResourceGrants
All Implemented Interfaces:
Serializable

public class ResourceGrants extends Extension implements 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 Details

    • resourceName

      protected String resourceName
      The name of the resource being granted.
    • grantedActions

      protected List<String> grantedActions
    • deniedActions

      protected List<String> deniedActions
  • Constructor Details

    • ResourceGrants

      public ResourceGrants()
  • Method Details

    • getResourceName

      public String getResourceName()
      The name of the resource being granted.
      Returns:
      possible object is String
    • setResourceName

      public void setResourceName(String value)
      Sets the value of the resourceName property.
      Parameters:
      value - allowed object is String
      See Also:
    • getGrantedActions

      public List<String> 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 set method 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

      public List<String> 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 set method 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.