Class JPAAnyTypeClass
- 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.JPAAnyTypeClass
-
- All Implemented Interfaces:
Serializable
,AnyTypeClass
,Entity
,ProvidedKeyEntity
@Entity public class JPAAnyTypeClass extends AbstractProvidedKeyEntity implements AnyTypeClass
- 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 JPAAnyTypeClass()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(DerSchema schema)
boolean
add(PlainSchema schema)
boolean
add(VirSchema schema)
List<? extends DerSchema>
getDerSchemas()
List<? extends PlainSchema>
getPlainSchemas()
List<? extends VirSchema>
getVirSchemas()
-
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
-
add
public boolean add(PlainSchema schema)
- Specified by:
add
in interfaceAnyTypeClass
-
getPlainSchemas
public List<? extends PlainSchema> getPlainSchemas()
- Specified by:
getPlainSchemas
in interfaceAnyTypeClass
-
add
public boolean add(DerSchema schema)
- Specified by:
add
in interfaceAnyTypeClass
-
getDerSchemas
public List<? extends DerSchema> getDerSchemas()
- Specified by:
getDerSchemas
in interfaceAnyTypeClass
-
add
public boolean add(VirSchema schema)
- Specified by:
add
in interfaceAnyTypeClass
-
getVirSchemas
public List<? extends VirSchema> getVirSchemas()
- Specified by:
getVirSchemas
in interfaceAnyTypeClass
-
-