Package com.verisign.epp.pool.parser
Class EPPXMLSignatureParserPool
- java.lang.Object
-
- com.verisign.epp.pool.parser.EPPXMLSignatureParserPool
-
public class EPPXMLSignatureParserPool 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 EPPXMLSignatureParserPool
getInstance()
SingletongetInstance
method for accessing theEPPXMLSignatureParserPool
instance.org.apache.commons.pool2.BaseObjectPool<EPPXMLSignatureSchemaCachingParser>
getPool()
Gets the pool initialized byEPPXMLSignatureParserPool
for getting and returning XML Signature parsers.
-
-
-
Method Detail
-
getInstance
public static EPPXMLSignatureParserPool getInstance()
SingletongetInstance
method for accessing theEPPXMLSignatureParserPool
instance.- Returns:
EPPXMLSignatureParserPool
Singleton instance.
-
getPool
public org.apache.commons.pool2.BaseObjectPool<EPPXMLSignatureSchemaCachingParser> getPool()
Gets the pool initialized byEPPXMLSignatureParserPool
for getting and returning XML Signature parsers.- Returns:
- XML Signature parser pool initialized by
EPPXMLSignatureParserPool
if initialized;null
otherwise.
-
-