Class DsSetNode
- java.lang.Object
-
- de.uplanet.lucy.server.usermanager.orgstructure.DsSetNode
-
- All Implemented Interfaces:
de.uplanet.lucy.server.usermanager.orgstructure.IDsNode
@Scriptable public final class DsSetNode extends Object implements de.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getClassId()
String
getDescription()
String
getGuid()
int
getId()
DsSetNode[]
getMembers()
String
getName()
DsContainerNode
getParent()
String
getPath()
StringBuilder
getPathAsStringBuilder()
int
getPriority()
boolean
hasMember()
boolean
hasParent()
boolean
isDeleted()
String
toString()
-
-
-
Constructor Detail
-
DsSetNode
public DsSetNode(int p_iId, String p_strId, int p_iClassId, String p_strName, String p_strDesc, int p_iPriority, boolean p_bDeleted)
Create a set node.- Parameters:
p_iId
- The integer ID of the setp_strId
- The ID of the set (normally a GUID).p_iClassId
- The ID of the set's class.p_strName
- The name.p_strDesc
- The description.p_iPriority
- The priority.p_bDeleted
-true
if the set is deleted, orfalse
otherwise.
-
-
Method Detail
-
getGuid
public String getGuid()
- Specified by:
getGuid
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
getId
public int getId()
- Specified by:
getId
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
getClassId
public int getClassId()
- Specified by:
getClassId
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
getName
public String getName()
-
getPath
public String getPath()
-
getPathAsStringBuilder
public StringBuilder getPathAsStringBuilder()
-
getDescription
public String getDescription()
-
getPriority
public int getPriority()
- Specified by:
getPriority
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
isDeleted
public boolean isDeleted()
- Specified by:
isDeleted
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
hasParent
public boolean hasParent()
- Specified by:
hasParent
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
getParent
public DsContainerNode getParent()
- Specified by:
getParent
in interfacede.uplanet.lucy.server.usermanager.orgstructure.IDsNode
-
hasMember
public boolean hasMember()
- Returns:
true
if this container has members, orfalse
otherwise.
-
getMembers
public DsSetNode[] getMembers()
- Returns:
- An array that contains the member sets of
this set (not
null
).
-
-