Class AppTreeLevelNode
- java.lang.Object
-
- nl.b3p.tailormap.api.persistence.json.AppTreeLevelNode
-
- All Implemented Interfaces:
Serializable,AppTreeNode
@Generated("org.openapitools.codegen.languages.SpringCodegen") public class AppTreeLevelNode extends Object implements Serializable, AppTreeNodeNode for organizing app layer referencing nodes in a folder tree.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AppTreeLevelNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AppTreeLevelNodeaddChildrenIdsItem(String childrenIdsItem)AppTreeLevelNodechildrenIds(List<String> childrenIds)AppTreeLevelNodedescription(String description)booleanequals(Object o)@NotNull List<String>getChildrenIds()Ordered list of ids of LayerTreeNodes that are children of this node.StringgetDescription()Description for this node entered by application admin.StringgetId()A unique identifier across all tree nodes.StringgetObjectType()Get objectType@NotNull BooleangetRoot()Only a single node in a tree will have this set to true.@NotNull StringgetTitle()Display title of this tree node.inthashCode()AppTreeLevelNodeid(String id)AppTreeLevelNodeobjectType(String objectType)AppTreeLevelNoderoot(Boolean root)voidsetChildrenIds(List<String> childrenIds)voidsetDescription(String description)voidsetId(String id)voidsetObjectType(String objectType)voidsetRoot(Boolean root)voidsetTitle(String title)AppTreeLevelNodetitle(String title)StringtoString()
-
-
-
Method Detail
-
id
public AppTreeLevelNode id(String id)
-
getId
public String getId()
A unique identifier across all tree nodes.- Returns:
- id
-
setId
public void setId(String id)
-
objectType
public AppTreeLevelNode objectType(String objectType)
-
getObjectType
public String getObjectType()
Get objectType- Specified by:
getObjectTypein interfaceAppTreeNode- Returns:
- objectType
-
setObjectType
public void setObjectType(String objectType)
-
title
public AppTreeLevelNode title(String title)
-
getTitle
@NotNull public @NotNull String getTitle()
Display title of this tree node.- Returns:
- title
-
setTitle
public void setTitle(String title)
-
description
public AppTreeLevelNode description(String description)
-
getDescription
public String getDescription()
Description for this node entered by application admin.- Returns:
- description
-
setDescription
public void setDescription(String description)
-
root
public AppTreeLevelNode root(Boolean root)
-
getRoot
@NotNull public @NotNull Boolean getRoot()
Only a single node in a tree will have this set to true.- Returns:
- root
-
setRoot
public void setRoot(Boolean root)
-
childrenIds
public AppTreeLevelNode childrenIds(List<String> childrenIds)
-
addChildrenIdsItem
public AppTreeLevelNode addChildrenIdsItem(String childrenIdsItem)
-
getChildrenIds
@NotNull public @NotNull List<String> getChildrenIds()
Ordered list of ids of LayerTreeNodes that are children of this node.- Returns:
- childrenIds
-
-