Klasse OrgStructure
java.lang.Object
de.uplanet.lucy.server.usermanager.orgstructure.OrgStructure
- Alle implementierten Schnittstellen:
IOrgStructure
This class is an in-memory representation of the Intrexx organizational structure.
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungbooleancontainsContainerNode(String p_strId) Check if the org structure contains a container with the given given unique identifier.booleancontainsSetNode(String p_strId) Check if the org structure contains a set with the given given unique identifier.Get an iterator over all the containers that are referenced by the internal collection of containers.getContainerNode(int p_iId) Get a container node by it's integer identifier.getContainerNode(String p_strId) Get a container node by it's unique identifier.Get the pseudo root node of the organizational structure.getSetNode(int p_iId) Get a set by it's integer identifier.getSetNode(String p_strId) Get a set by it's unique identifier.
-
Konstruktordetails
-
OrgStructure
public OrgStructure() -
OrgStructure
-
-
Methodendetails
-
getPseudoRootNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet the pseudo root node of the organizational structure.The children of this node are the top-level organizational container nodes and do not report the pseudo root as their parent.
- Angegeben von:
getPseudoRootNodein SchnittstelleIOrgStructure- Gibt zurück:
- The pseudo root node.
-
containsContainerNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureCheck if the org structure contains a container with the given given unique identifier.- Angegeben von:
containsContainerNodein SchnittstelleIOrgStructure- Parameter:
p_strId- The unique identifier.- Gibt zurück:
trueif the container was found, orfalseotherwise.
-
getContainerNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet a container node by it's unique identifier.- Angegeben von:
getContainerNodein SchnittstelleIOrgStructure- Parameter:
p_strId- The organizational container's unique identifier.- Gibt zurück:
- The organizational container node, or
nullif none was found for the given unique identifier.
-
getContainerNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet a container node by it's integer identifier.Note: Access by integer identifier is prohibited for non-usermanager packages. So don't use it in other layers.
- Angegeben von:
getContainerNodein SchnittstelleIOrgStructure- Parameter:
p_iId- The container's integer identifier.- Gibt zurück:
- The container node, or
nullif none was found for the given integer identifier.
-
getContainerIterator
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet an iterator over all the containers that are referenced by the internal collection of containers. This iterator does not guarantee any specific order.- Angegeben von:
getContainerIteratorin SchnittstelleIOrgStructure- Gibt zurück:
- An iterator over all containers in the org structure.
-
getRootChildren
- Angegeben von:
getRootChildrenin SchnittstelleIOrgStructure- Gibt zurück:
- A possibly empty array of root containers.
-
containsSetNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureCheck if the org structure contains a set with the given given unique identifier.- Angegeben von:
containsSetNodein SchnittstelleIOrgStructure- Parameter:
p_strId- The unique identifier.- Gibt zurück:
trueif the set was found, orfalseotherwise.
-
getSetNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet a set by it's unique identifier.- Angegeben von:
getSetNodein SchnittstelleIOrgStructure- Parameter:
p_strId- The set's unique identifier.- Gibt zurück:
- The set node, or
nullif none was found for the given unique identifier.
-
getSetNode
Beschreibung aus Schnittstelle kopiert:IOrgStructureGet a set by it's integer identifier.- Angegeben von:
getSetNodein SchnittstelleIOrgStructure- Parameter:
p_iId- The set's integer identifier.- Gibt zurück:
- The set node, or
nullif none was found for the given integer identifier.
-
getSetIterator
- Angegeben von:
getSetIteratorin SchnittstelleIOrgStructure- Gibt zurück:
- An iterator over all sets in the org structure.
-