oracle.apps.fnd.wf.design
Class AccessController

java.lang.Object
  |
  +--oracle.apps.fnd.wf.common.Element
        |
        +--oracle.apps.fnd.wf.common.BaseComponent
              |
              +--oracle.apps.fnd.wf.design.AccessController

public class AccessController
extends BaseComponent

AccessController is the container for the security / access related information of a component.


Field Summary
static java.lang.String RCS_ID
           
static boolean RCS_ID_RECORDED
           
 
Fields inherited from class oracle.apps.fnd.wf.common.Element
ELEMENT_DB_CREATED, ELEMENT_DB_CREATING, ELEMENT_DB_DIRTY, ELEMENT_DB_LOADED, ELEMENT_DB_LOADING, ELEMENT_DB_NOT_INITIALIZED, ELEMENT_DB_SAVED, ELEMENT_DB_SAVING
 
Constructor Summary
AccessController()
           
 
Method Summary
 void assign(AccessController pAccessController)
          Assigns the information from another access controller to this access controller.
 java.lang.String getCustomLevel()
          Returns the customization level of the component.
 java.lang.String getExecuteRole()
          Returns the role name that has execute privilege to this component.
 java.lang.String getProtectLevel()
          Returns the protection level of the component.
 java.lang.String getReadRole()
          Returns the role name that has read access to this component.
 java.lang.String getWriteRole()
          Returns the role name that has write access to this component.
 void setCustomLevel(java.lang.String pCustomLevel)
          Setter function for the customization level of the component.
 void setExecuteRole(java.lang.String pExecuteRole)
          Setter function for the role who has execute privilege to this component.
 void setProtectLevel(java.lang.String pProtectLevel)
          Setter function for the protection level of the component.
 void setReadRole(java.lang.String pReadRole)
          Setter function for the role who has read access to this component.
 void setWriteRole(java.lang.String pWriteRole)
          Setter function for the role who has write permission to this component.
 
Methods inherited from class oracle.apps.fnd.wf.common.BaseComponent
addChild, getChildByTypeAndName, getChildren, getChildrenByName, getChildrenByType, getName, getParent, removeChild, removeChildren
 
Methods inherited from class oracle.apps.fnd.wf.common.Element
create, getDBStatus, getId, load, save, setStore, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

RCS_ID

public static final java.lang.String RCS_ID

RCS_ID_RECORDED

public static final boolean RCS_ID_RECORDED
Constructor Detail

AccessController

public AccessController()
Method Detail

assign

public void assign(AccessController pAccessController)
Assigns the information from another access controller to this access controller.
Parameters:
pAccessController - : Access Controller.

getCustomLevel

public java.lang.String getCustomLevel()
Returns the customization level of the component.
Returns:
Customization level.

setCustomLevel

public void setCustomLevel(java.lang.String pCustomLevel)
Setter function for the customization level of the component.
Parameters:
pCustomLevel - : Customization level.

getProtectLevel

public java.lang.String getProtectLevel()
Returns the protection level of the component.
Returns:
Protection level.

setProtectLevel

public void setProtectLevel(java.lang.String pProtectLevel)
Setter function for the protection level of the component.
Parameters:
pProtectLevel - : Protection level.

getReadRole

public java.lang.String getReadRole()
Returns the role name that has read access to this component.
Returns:
Role name.

setReadRole

public void setReadRole(java.lang.String pReadRole)
Setter function for the role who has read access to this component.
Parameters:
pReadRole - : Role name.

getExecuteRole

public java.lang.String getExecuteRole()
Returns the role name that has execute privilege to this component.
Returns:
Role name.

setExecuteRole

public void setExecuteRole(java.lang.String pExecuteRole)
Setter function for the role who has execute privilege to this component.
Parameters:
pExecuteRole - : Role name.

getWriteRole

public java.lang.String getWriteRole()
Returns the role name that has write access to this component.
Returns:
Role name.

setWriteRole

public void setWriteRole(java.lang.String pWriteRole)
Setter function for the role who has write permission to this component.
Parameters:
pWriteRole - : Role name.