Class AbstractDataExtractor

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected org.apache.commons.logging.Log logger
      Logger that can be used by subclasses
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterPropertiesSet()
      Registers the instance
      boolean equals​(java.lang.Object obj)
      This implementation assumes all extractors are stateless i.e.
      void setBeanName​(java.lang.String name)
      Set the name with which to register
      void setRegistry​(org.alfresco.util.registry.NamedObjectRegistry<DataExtractor> registry)
      Set the registry with which to register
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • logger

        protected final org.apache.commons.logging.Log logger
        Logger that can be used by subclasses
    • Constructor Detail

      • AbstractDataExtractor

        public AbstractDataExtractor()
    • Method Detail

      • setBeanName

        public void setBeanName​(java.lang.String name)
        Set the name with which to register
        Specified by:
        setBeanName in interface org.springframework.beans.factory.BeanNameAware
        Parameters:
        name - the name of the bean
      • setRegistry

        public void setRegistry​(org.alfresco.util.registry.NamedObjectRegistry<DataExtractor> registry)
        Set the registry with which to register
      • afterPropertiesSet

        public void afterPropertiesSet()
                                throws java.lang.Exception
        Registers the instance
        Specified by:
        afterPropertiesSet in interface org.springframework.beans.factory.InitializingBean
        Throws:
        java.lang.Exception
      • equals

        public boolean equals​(java.lang.Object obj)
        This implementation assumes all extractors are stateless i.e. if the class matches then the instances are equal.
        Overrides:
        equals in class java.lang.Object