Class EPPTransformerPool
- java.lang.Object
-
- com.verisign.epp.pool.transformer.EPPTransformerPool
-
public class EPPTransformerPool extends java.lang.Object
Singleton transformer pool class that initializes the transformer 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 EPPTransformerPool
getInstance()
SingletongetInstance
method for accessing theEPPTransformerPool
instance.org.apache.commons.pool2.BaseObjectPool<javax.xml.transform.Transformer>
getPool()
Gets the pool initialized byEPPTransformerPool
for getting and returning transformer.
-
-
-
Method Detail
-
getInstance
public static EPPTransformerPool getInstance()
SingletongetInstance
method for accessing theEPPTransformerPool
instance.- Returns:
EPPTransformerPool
Singleton instance.
-
getPool
public org.apache.commons.pool2.BaseObjectPool<javax.xml.transform.Transformer> getPool()
Gets the pool initialized byEPPTransformerPool
for getting and returning transformer.- Returns:
- Transformer pool initialized by
EPPTransformerPool
.
-
-