Class CurrentTransletFactoryBean

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAttributeName()
      Returns the attribute name of the current Translet specified to register in the request scope.
      Translet getObject()
      Return an instance (possibly shared or independent) of the object managed by this factory.
      boolean isAttributable()
      Returns whether the current Translet is registered as an attribute in the request scope.
      void setAttributeName​(java.lang.String attributeName)
      Specifies the attribute name for registering the current Translet as an attribute in the request scope.
      void setCurrentActivity​(Activity activity)  
      • Methods inherited from class java.lang.Object

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

      • CurrentTransletFactoryBean

        public CurrentTransletFactoryBean()
    • Method Detail

      • isAttributable

        public boolean isAttributable()
        Returns whether the current Translet is registered as an attribute in the request scope.
        Returns:
        true if the current Translet is registered as an attribute in the request scope; false otherwise
      • getAttributeName

        public java.lang.String getAttributeName()
        Returns the attribute name of the current Translet specified to register in the request scope.
        Returns:
        the attribute name
      • setAttributeName

        public void setAttributeName​(java.lang.String attributeName)
        Specifies the attribute name for registering the current Translet as an attribute in the request scope.
        Parameters:
        attributeName - the attribute name of the current Translet to be registered in the request scope.
      • getObject

        public Translet getObject()
                           throws java.lang.Exception
        Description copied from interface: FactoryBean
        Return an instance (possibly shared or independent) of the object managed by this factory. As with a BeanFactory, this allows support for both the Singleton and Prototype design pattern.
        Specified by:
        getObject in interface FactoryBean<Translet>
        Returns:
        an instance of the bean (can be null)
        Throws:
        java.lang.Exception - in case of creation errors