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 AnyTypeClass
getAnyTypeClass()
Optional<String>
getLabel(Locale locale)
Map<Locale,String>
getLabels()
String
getMandatoryCondition()
AttrSchemaType
getType()
boolean
isMultivalue()
boolean
isReadonly()
boolean
isUniqueConstraint()
void
setAnyTypeClass(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()
-
-