Class EPPTransformerPool


  • public class EPPTransformerPool
    extends java.lang.Object
    Singleton transformer pool class that initializes the transformer pool at initialization, and provides a getPool() to get the initialized pool.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static EPPTransformerPool getInstance()
      Singleton getInstance method for accessing the EPPTransformerPool instance.
      org.apache.commons.pool2.BaseObjectPool<javax.xml.transform.Transformer> getPool()
      Gets the pool initialized by EPPTransformerPool for getting and returning transformer.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getInstance

        public static EPPTransformerPool getInstance()
        Singleton getInstance method for accessing the EPPTransformerPool instance.
        Returns:
        EPPTransformerPool Singleton instance.
      • getPool

        public org.apache.commons.pool2.BaseObjectPool<javax.xml.transform.Transformer> getPool()
        Gets the pool initialized by EPPTransformerPool for getting and returning transformer.
        Returns:
        Transformer pool initialized by EPPTransformerPool.