Interface Schema
-
- All Superinterfaces:
Entity,ProvidedKeyEntity,Serializable
- All Known Subinterfaces:
DerSchema,PlainSchema,VirSchema
- All Known Implementing Classes:
AbstractSchema,JPADerSchema,JPAPlainSchema,JPAVirSchema
public interface Schema extends ProvidedKeyEntity
-
-
Field Summary
-
Fields inherited from interface org.apache.syncope.core.persistence.api.entity.Entity
EMAIL_PATTERN, ID_PATTERN, ID_REGEX
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnyTypeClassgetAnyTypeClass()Optional<String>getLabel(Locale locale)Map<Locale,String>getLabels()StringgetMandatoryCondition()AttrSchemaTypegetType()booleanisMultivalue()booleanisReadonly()booleanisUniqueConstraint()voidsetAnyTypeClass(AnyTypeClass anyTypeClass)-
Methods inherited from interface org.apache.syncope.core.persistence.api.entity.ProvidedKeyEntity
setKey
-
-
-
-
Method Detail
-
getAnyTypeClass
AnyTypeClass getAnyTypeClass()
-
setAnyTypeClass
void setAnyTypeClass(AnyTypeClass anyTypeClass)
-
getType
AttrSchemaType getType()
-
getMandatoryCondition
String getMandatoryCondition()
-
isMultivalue
boolean isMultivalue()
-
isReadonly
boolean isReadonly()
-
isUniqueConstraint
boolean isUniqueConstraint()
-
-