Class AutoAdministrationTree
- java.lang.Object
-
- lumis.service.autoadministration.entity.AutoAdministrationTree
-
public class AutoAdministrationTree extends Object
Auto administration tree.- Since:
- 10.4.0
- Version:
- $Revision: 21230 $ $Date: 2018-04-24 19:07:57 -0300 (Tue, 24 Apr 2018) $
-
-
Constructor Summary
Constructors Constructor Description AutoAdministrationTree()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AutoAdministrationTreeItem
getChild(String itemId)
Collection<AutoAdministrationTreeItem>
getChildren()
Returns the children.Collection<AutoAdministrationTreeExclusion>
getExclusions()
Returns the exclusions.String
getId()
Returns the id.String
getName()
Returns the name.int
getPosition()
Returns the position.List<AutoAdministrationTreeItem>
getRootItems()
Returns the sorted root items of this tree.AutoAdministrationTreeType
getType()
Returns the tree type.boolean
isHidden()
Returns whether the tree is hidden or not.boolean
isStandard()
Returns whether this is a standard tree.String
toString()
-
-
-
Method Detail
-
getId
public String getId()
Returns the id.- Returns:
- the id
- Since:
- 10.4.0
-
getName
public String getName()
Returns the name.- Returns:
- the name
- Since:
- 10.4.0
-
getPosition
public int getPosition()
Returns the position.- Returns:
- the position
- Since:
- 10.4.0
-
isHidden
public boolean isHidden()
Returns whether the tree is hidden or not.- Returns:
- whether the tree is hidden or not.
- Since:
- 10.4.0
-
isStandard
public boolean isStandard()
Returns whether this is a standard tree.- Returns:
- whether this is a standard tree.
- Since:
- 10.4.0
-
getType
public AutoAdministrationTreeType getType()
Returns the tree type.- Returns:
- the tree type.
- Since:
- 10.4.0
-
getChildren
public Collection<AutoAdministrationTreeItem> getChildren()
Returns the children.- Returns:
- the children
- Since:
- 10.4.0
-
getExclusions
public Collection<AutoAdministrationTreeExclusion> getExclusions()
Returns the exclusions.- Returns:
- the exclusions
- Since:
- 10.4.0
-
getChild
public AutoAdministrationTreeItem getChild(String itemId)
-
getRootItems
public List<AutoAdministrationTreeItem> getRootItems()
Returns the sorted root items of this tree.- Returns:
- the sorted root items of this tree.
-
-