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 boolean
equals(Object object)
Returnstrue
if the argument is an EntryPointTreeEntity instance and all identifiers for this entity equal the identifiers of the argument entity.EntryPointEntity
getChild()
Gets value for attribute childLong
getId()
Gets value for attribute idInteger
getOrder()
Gets value for attribute orderEntryPointEntity
getParent()
Gets value for attribute parentint
hashCode()
Returns a hash code based on this entity's identifiers.void
setChild(EntryPointEntity child)
Sets value for attribute childvoid
setId(Long id)
Sets value for attribute idvoid
setOrder(Integer order)
Sets value for attribute ordervoid
setParent(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)
Returnstrue
if the argument is an EntryPointTreeEntity instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-