Class JPAConnPoolConf
- java.lang.Object
-
- org.apache.syncope.core.persistence.jpa.entity.JPAConnPoolConf
-
- All Implemented Interfaces:
Serializable
,ConnPoolConf
@Embeddable public class JPAConnPoolConf extends Object implements ConnPoolConf, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JPAConnPoolConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Integer
getMaxIdle()
Integer
getMaxObjects()
Long
getMaxWait()
Long
getMinEvictableIdleTimeMillis()
Integer
getMinIdle()
int
hashCode()
void
setMaxIdle(Integer maxIdle)
void
setMaxObjects(Integer maxObjects)
void
setMaxWait(Long maxWait)
void
setMinEvictableIdleTimeMillis(Long minEvictableIdleTimeMillis)
void
setMinIdle(Integer minIdle)
String
toString()
-
-
-
Method Detail
-
getMaxObjects
public Integer getMaxObjects()
- Specified by:
getMaxObjects
in interfaceConnPoolConf
-
setMaxObjects
public void setMaxObjects(Integer maxObjects)
- Specified by:
setMaxObjects
in interfaceConnPoolConf
-
getMinIdle
public Integer getMinIdle()
- Specified by:
getMinIdle
in interfaceConnPoolConf
-
setMinIdle
public void setMinIdle(Integer minIdle)
- Specified by:
setMinIdle
in interfaceConnPoolConf
-
getMaxIdle
public Integer getMaxIdle()
- Specified by:
getMaxIdle
in interfaceConnPoolConf
-
setMaxIdle
public void setMaxIdle(Integer maxIdle)
- Specified by:
setMaxIdle
in interfaceConnPoolConf
-
getMaxWait
public Long getMaxWait()
- Specified by:
getMaxWait
in interfaceConnPoolConf
-
setMaxWait
public void setMaxWait(Long maxWait)
- Specified by:
setMaxWait
in interfaceConnPoolConf
-
getMinEvictableIdleTimeMillis
public Long getMinEvictableIdleTimeMillis()
- Specified by:
getMinEvictableIdleTimeMillis
in interfaceConnPoolConf
-
setMinEvictableIdleTimeMillis
public void setMinEvictableIdleTimeMillis(Long minEvictableIdleTimeMillis)
- Specified by:
setMinEvictableIdleTimeMillis
in interfaceConnPoolConf
-
-