Class SPGroup
- java.lang.Object
-
- org.silverpeas.core.persistence.datasource.model.jpa.AbstractJpaEntity<E,I>
-
- org.silverpeas.core.persistence.datasource.model.jpa.BasicJpaEntity<SPGroup,UniqueIntegerIdentifier>
-
- org.silverpeas.core.admin.domain.driver.SPGroup
-
- All Implemented Interfaces:
Serializable
,IdentifiableEntity
@Entity public class SPGroup extends BasicJpaEntity<SPGroup,UniqueIntegerIdentifier> implements Serializable
- Author:
- ehugonnet
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getDescription()
String
getName()
SPGroup
getParent()
Set<SPGroup>
getSubGroups()
Set<SPUser>
getUsers()
int
hashCode()
void
setDescription(String description)
void
setId(Integer id)
void
setName(String name)
void
setParent(SPGroup parent)
void
setSubGroups(Set<SPGroup> subGroups)
void
setUsers(Set<SPUser> users)
String
toString()
-
Methods inherited from class org.silverpeas.core.persistence.datasource.model.jpa.BasicJpaEntity
performBeforePersist, performBeforeRemove, performBeforeUpdate
-
Methods inherited from class org.silverpeas.core.persistence.datasource.model.jpa.AbstractJpaEntity
getId, getNativeId, isPersisted, setId
-
-
-
-
Method Detail
-
setId
public void setId(Integer id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getParent
public SPGroup getParent()
-
setParent
public void setParent(SPGroup parent)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractJpaEntity<SPGroup,UniqueIntegerIdentifier>
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classAbstractJpaEntity<SPGroup,UniqueIntegerIdentifier>
-
-