Class DsContainerNode
java.lang.Object
de.uplanet.lucy.server.usermanager.orgstructure.DsContainerNode
- All Implemented Interfaces:
IDsNode
-
Constructor Summary
ConstructorDescriptionDsContainerNode
(int p_iId, String p_strId, int p_iClassId, String p_strName, String p_strDescr, int p_iPriority, boolean p_bDeleted) Create a container node. -
Method Summary
Modifier and TypeMethodDescriptionint
Get the class id of this org-structure node.getGuid()
Get the unique identifier of this org-structure node.int
getId()
Get the integer identifier of this org-structure node.getName()
getPath()
int
Get the priority of this org-structure node.getSets()
boolean
boolean
boolean
hasSet()
boolean
toString()
-
Constructor Details
-
DsContainerNode
public DsContainerNode(int p_iId, String p_strId, int p_iClassId, String p_strName, String p_strDescr, int p_iPriority, boolean p_bDeleted) Create a container node.- Parameters:
p_iId
- The integer ID of the container.p_strId
- The ID of the container (normally a GUID).p_iClassId
- The ID of the container's class.p_strName
- The name.p_strDescr
- The description.p_iPriority
- The priority.p_bDeleted
-true
if the container is deleted, orfalse
otherwise.
-
-
Method Details
-
toString
-
getGuid
Description copied from interface:IDsNode
Get the unique identifier of this org-structure node. -
getId
public int getId()Description copied from interface:IDsNode
Get the integer identifier of this org-structure node. -
getClassId
public int getClassId()Description copied from interface:IDsNode
Get the class id of this org-structure node.- Specified by:
getClassId
in interfaceIDsNode
- Returns:
- The class id.
-
getName
-
getPath
-
getPathAsStringBuilder
-
getDescription
-
getPriority
public int getPriority()Description copied from interface:IDsNode
Get the priority of this org-structure node.- Specified by:
getPriority
in interfaceIDsNode
- Returns:
- The priority.
-
isDeleted
public boolean isDeleted() -
hasParent
public boolean hasParent() -
getParent
-
hasContainer
public boolean hasContainer()- Returns:
true
if this container has child containers, orfalse
otherwise.
-
getContainers
- Returns:
- An array that contains the child containers of this
container (not
null
).
-
hasSet
public boolean hasSet()- Returns:
true
if this container has child sets, orfalse
otherwise.
-
getSets
- Returns:
- An array that contains the child sets of this
container (not
null
).
-