Package org.apereo.cas.jpa
Class AbstractJpaEntityFactory<T>
- java.lang.Object
-
- org.apereo.cas.jpa.AbstractJpaEntityFactory<T>
-
- Type Parameters:
T- the type parameter
public abstract class AbstractJpaEntityFactory<T> extends java.lang.ObjectThis isAbstractJpaEntityFactory.- Since:
- 6.2.0
-
-
Constructor Summary
Constructors Constructor Description AbstractJpaEntityFactory()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.lang.Class<T>getType()Gets type.protected booleanisMariaDb()Is maria db ?protected booleanisMySql()Is my sql ?.protected booleanisOracle()Is oracle ?.protected booleanisPostgres()Is postgres ?.TnewInstance()New document.
-
-
-
Method Detail
-
getType
public abstract java.lang.Class<T> getType()
Gets type.- Returns:
- the type
-
newInstance
public T newInstance()
New document.- Returns:
- the document
-
isOracle
protected boolean isOracle()
Is oracle ?.- Returns:
- true/false
-
isMySql
protected boolean isMySql()
Is my sql ?.- Returns:
- true/false
-
isPostgres
protected boolean isPostgres()
Is postgres ?.- Returns:
- true/false
-
isMariaDb
protected boolean isMariaDb()
Is maria db ?- Returns:
- true/false
-
-