Class JPATypeExtension
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
-
- org.apache.syncope.core.persistence.jpa.entity.group.JPATypeExtension
-
- All Implemented Interfaces:
Serializable
,Entity
,TypeExtension
@Entity public class JPATypeExtension extends AbstractGeneratedKeyEntity implements TypeExtension
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
TABLE
-
Fields inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
LOG
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Constructor Summary
Constructors Constructor Description JPATypeExtension()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(AnyTypeClass auxClass)
AnyType
getAnyType()
List<? extends AnyTypeClass>
getAuxClasses()
Group
getGroup()
void
setAnyType(AnyType anyType)
void
setGroup(Group group)
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractGeneratedKeyEntity
getKey, setKey
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
checkImplementationType, checkType, equals, hashCode, toString
-
-
-
-
Field Detail
-
TABLE
public static final String TABLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getGroup
public Group getGroup()
- Specified by:
getGroup
in interfaceTypeExtension
-
setGroup
public void setGroup(Group group)
- Specified by:
setGroup
in interfaceTypeExtension
-
getAnyType
public AnyType getAnyType()
- Specified by:
getAnyType
in interfaceTypeExtension
-
setAnyType
public void setAnyType(AnyType anyType)
- Specified by:
setAnyType
in interfaceTypeExtension
-
add
public boolean add(AnyTypeClass auxClass)
- Specified by:
add
in interfaceTypeExtension
-
getAuxClasses
public List<? extends AnyTypeClass> getAuxClasses()
- Specified by:
getAuxClasses
in interfaceTypeExtension
-
-