Package com.soffid.iam.model
Class EntryPointTreeEntity
- java.lang.Object
-
- com.soffid.iam.model.EntryPointTreeEntity
-
- Direct Known Subclasses:
EntryPointTreeEntityImpl
public abstract class EntryPointTreeEntity extends Object
Entity EntryPointTreeEntity
-
-
Constructor Summary
Constructors Constructor Description EntryPointTreeEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)Returnstrueif the argument is an EntryPointTreeEntity instance and all identifiers for this entity equal the identifiers of the argument entity.EntryPointEntitygetChild()Gets value for attribute childLonggetId()Gets value for attribute idIntegergetOrder()Gets value for attribute orderEntryPointEntitygetParent()Gets value for attribute parentinthashCode()Returns a hash code based on this entity's identifiers.voidsetChild(EntryPointEntity child)Sets value for attribute childvoidsetId(Long id)Sets value for attribute idvoidsetOrder(Integer order)Sets value for attribute ordervoidsetParent(EntryPointEntity parent)Sets value for attribute parent
-
-
-
Method Detail
-
getId
public Long getId()
Gets value for attribute id
-
setId
public void setId(Long id)
Sets value for attribute id
-
getOrder
public Integer getOrder()
Gets value for attribute order
-
setOrder
public void setOrder(Integer order)
Sets value for attribute order
-
getParent
public EntryPointEntity getParent()
Gets value for attribute parent
-
setParent
public void setParent(EntryPointEntity parent)
Sets value for attribute parent
-
getChild
public EntryPointEntity getChild()
Gets value for attribute child
-
setChild
public void setChild(EntryPointEntity child)
Sets value for attribute child
-
equals
public boolean equals(Object object)
Returnstrueif the argument is an EntryPointTreeEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalseotherwise.
-
-