Class JPADerSchema
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractProvidedKeyEntity
-
- org.apache.syncope.core.persistence.jpa.entity.AbstractSchema
-
- org.apache.syncope.core.persistence.jpa.entity.JPADerSchema
-
- All Implemented Interfaces:
Serializable
,DerSchema
,Entity
,ProvidedKeyEntity
,Schema
@Entity public class JPADerSchema extends AbstractSchema implements DerSchema
- 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.AbstractSchema
LABEL_TYPEREF
-
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 JPADerSchema()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnyTypeClass
getAnyTypeClass()
String
getExpression()
String
getMandatoryCondition()
AttrSchemaType
getType()
boolean
isMultivalue()
boolean
isReadonly()
boolean
isUniqueConstraint()
void
setAnyTypeClass(AnyTypeClass anyTypeClass)
void
setExpression(String expression)
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractSchema
getLabel, getLabels, json2map, map2json, postLoad, postSave
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractProvidedKeyEntity
getKey, setKey
-
Methods inherited from class org.apache.syncope.core.persistence.jpa.entity.AbstractEntity
checkImplementationType, checkType, equals, hashCode, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.syncope.core.persistence.api.entity.ProvidedKeyEntity
setKey
-
-
-
-
Field Detail
-
TABLE
public static final String TABLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAnyTypeClass
public AnyTypeClass getAnyTypeClass()
- Specified by:
getAnyTypeClass
in interfaceSchema
-
setAnyTypeClass
public void setAnyTypeClass(AnyTypeClass anyTypeClass)
- Specified by:
setAnyTypeClass
in interfaceSchema
-
getExpression
public String getExpression()
- Specified by:
getExpression
in interfaceDerSchema
-
setExpression
public void setExpression(String expression)
- Specified by:
setExpression
in interfaceDerSchema
-
getType
public AttrSchemaType getType()
-
getMandatoryCondition
public String getMandatoryCondition()
- Specified by:
getMandatoryCondition
in interfaceSchema
-
isMultivalue
public boolean isMultivalue()
- Specified by:
isMultivalue
in interfaceSchema
-
isUniqueConstraint
public boolean isUniqueConstraint()
- Specified by:
isUniqueConstraint
in interfaceSchema
-
isReadonly
public boolean isReadonly()
- Specified by:
isReadonly
in interfaceSchema
-
-