Class DsContainerNode
- java.lang.Object
-
- de.uplanet.lucy.server.usermanager.orgstructure.DsContainerNode
-
-
Constructor Summary
Constructors Constructor Description 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.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetClassId()Get the class id of this org-structure node.DsContainerNode[]getContainers()StringgetDescription()StringgetGuid()Get the unique identifier of this org-structure node.intgetId()Get the integer identifier of this org-structure node.StringgetName()DsContainerNodegetParent()StringgetPath()StringBuildergetPathAsStringBuilder()intgetPriority()Get the priority of this org-structure node.DsSetNode[]getSets()booleanhasContainer()booleanhasParent()booleanhasSet()booleanisDeleted()StringtoString()
-
-
-
Constructor Detail
-
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-trueif the container is deleted, orfalseotherwise.
-
-
Method Detail
-
getGuid
public String getGuid()
Description copied from interface:IDsNodeGet the unique identifier of this org-structure node.
-
getId
public int getId()
Description copied from interface:IDsNodeGet the integer identifier of this org-structure node.
-
getClassId
public int getClassId()
Description copied from interface:IDsNodeGet the class id of this org-structure node.- Specified by:
getClassIdin interfaceIDsNode- Returns:
- The class id.
-
getName
public String getName()
-
getPath
public String getPath()
-
getPathAsStringBuilder
public StringBuilder getPathAsStringBuilder()
-
getDescription
public String getDescription()
-
getPriority
public int getPriority()
Description copied from interface:IDsNodeGet the priority of this org-structure node.- Specified by:
getPriorityin interfaceIDsNode- Returns:
- The priority.
-
isDeleted
public boolean isDeleted()
-
hasParent
public boolean hasParent()
-
getParent
public DsContainerNode getParent()
-
hasContainer
public boolean hasContainer()
- Returns:
trueif this container has child containers, orfalseotherwise.
-
getContainers
public DsContainerNode[] getContainers()
- Returns:
- An array that contains the child containers of this
container (not
null).
-
hasSet
public boolean hasSet()
- Returns:
trueif this container has child sets, orfalseotherwise.
-
getSets
public DsSetNode[] getSets()
- Returns:
- An array that contains the child sets of this
container (not
null).
-
-