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 booleanequals(Object obj)IntegergetMaxIdle()IntegergetMaxObjects()LonggetMaxWait()LonggetMinEvictableIdleTimeMillis()IntegergetMinIdle()inthashCode()voidsetMaxIdle(Integer maxIdle)voidsetMaxObjects(Integer maxObjects)voidsetMaxWait(Long maxWait)voidsetMinEvictableIdleTimeMillis(Long minEvictableIdleTimeMillis)voidsetMinIdle(Integer minIdle)StringtoString()
-
-
-
Method Detail
-
getMaxObjects
public Integer getMaxObjects()
- Specified by:
getMaxObjectsin interfaceConnPoolConf
-
setMaxObjects
public void setMaxObjects(Integer maxObjects)
- Specified by:
setMaxObjectsin interfaceConnPoolConf
-
getMinIdle
public Integer getMinIdle()
- Specified by:
getMinIdlein interfaceConnPoolConf
-
setMinIdle
public void setMinIdle(Integer minIdle)
- Specified by:
setMinIdlein interfaceConnPoolConf
-
getMaxIdle
public Integer getMaxIdle()
- Specified by:
getMaxIdlein interfaceConnPoolConf
-
setMaxIdle
public void setMaxIdle(Integer maxIdle)
- Specified by:
setMaxIdlein interfaceConnPoolConf
-
getMaxWait
public Long getMaxWait()
- Specified by:
getMaxWaitin interfaceConnPoolConf
-
setMaxWait
public void setMaxWait(Long maxWait)
- Specified by:
setMaxWaitin interfaceConnPoolConf
-
getMinEvictableIdleTimeMillis
public Long getMinEvictableIdleTimeMillis()
- Specified by:
getMinEvictableIdleTimeMillisin interfaceConnPoolConf
-
setMinEvictableIdleTimeMillis
public void setMinEvictableIdleTimeMillis(Long minEvictableIdleTimeMillis)
- Specified by:
setMinEvictableIdleTimeMillisin interfaceConnPoolConf
-
-