Class JPAAuthModule
- 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.am.JPAAuthModule
-
- All Implemented Interfaces:
Serializable
,AuthModule
,Entity
,ProvidedKeyEntity
@Entity public class JPAAuthModule extends AbstractProvidedKeyEntity implements AuthModule
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
TABLE
protected static TypeReference<List<Item>>
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 JPAAuthModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthModuleConf
getConf()
String
getDescription()
List<Item>
getItems()
int
getOrder()
AuthModuleState
getState()
protected void
json2list(boolean clearFirst)
void
list2json()
void
postLoad()
void
postSave()
void
setConf(AuthModuleConf conf)
void
setDescription(String description)
void
setOrder(int order)
void
setState(AuthModuleState state)
-
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
-
TYPEREF
protected static final TypeReference<List<Item>> TYPEREF
-
-
Method Detail
-
getDescription
public String getDescription()
- Specified by:
getDescription
in interfaceAuthModule
-
setDescription
public void setDescription(String description)
- Specified by:
setDescription
in interfaceAuthModule
-
getState
public AuthModuleState getState()
- Specified by:
getState
in interfaceAuthModule
-
setState
public void setState(AuthModuleState state)
- Specified by:
setState
in interfaceAuthModule
-
getOrder
public int getOrder()
- Specified by:
getOrder
in interfaceAuthModule
-
setOrder
public void setOrder(int order)
- Specified by:
setOrder
in interfaceAuthModule
-
getItems
public List<Item> getItems()
- Specified by:
getItems
in interfaceAuthModule
-
getConf
public AuthModuleConf getConf()
- Specified by:
getConf
in interfaceAuthModule
-
setConf
public void setConf(AuthModuleConf conf)
- Specified by:
setConf
in interfaceAuthModule
-
json2list
protected void json2list(boolean clearFirst)
-
postLoad
public void postLoad()
-
postSave
public void postSave()
-
list2json
public void list2json()
-
-