Package com.verisign.epp.pool.parser
Class EPPSchemaCachingParserPool
- java.lang.Object
-
- com.verisign.epp.pool.parser.EPPSchemaCachingParserPool
-
public class EPPSchemaCachingParserPool extends java.lang.Object
Singleton parser pool class that initializes the parser pool at initialization, and provides agetPool()
to get the initialized pool.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EPPSchemaCachingParserPool
getInstance()
SingletongetInstance
method for accessing theEPPSchemaCachingParserPool
instance.org.apache.commons.pool2.BaseObjectPool<EPPSchemaCachingParser>
getPool()
Gets the pool initialized byEPPSchemaCachingParserPool
for getting and returning schema caching parsers.
-
-
-
Method Detail
-
getInstance
public static EPPSchemaCachingParserPool getInstance()
SingletongetInstance
method for accessing theEPPSchemaCachingParserPool
instance.- Returns:
EPPSchemaCachingParserPool
Singleton instance.
-
getPool
public org.apache.commons.pool2.BaseObjectPool<EPPSchemaCachingParser> getPool()
Gets the pool initialized byEPPSchemaCachingParserPool
for getting and returning schema caching parsers.- Returns:
- Parser pool initialized by
EPPSchemaCachingParserPool
.
-
-