Interface EmbeddedAspectran

    • Method Detail

      • newSessionAdapter

        SessionAdapter newSessionAdapter()
        Create and return a new session adapter from the embedded aspectran.
        Returns:
        the session adapter
      • translate

        Translet translate​(java.lang.String name)
        Execute the translet.
        Parameters:
        name - the translet name
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           ParameterMap parameterMap)
        Execute the translet.
        Parameters:
        name - the translet name
        parameterMap - the parameter map
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           ParameterMap parameterMap,
                           java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Execute the translet.
        Parameters:
        name - the translet name
        parameterMap - the parameter map
        attributeMap - the attribute map
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Execute the translet.
        Parameters:
        name - the translet name
        attributeMap - the attribute map
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           MethodType method)
        Execute the translet.
        Parameters:
        name - the translet name
        method - the request method
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           MethodType method,
                           ParameterMap parameterMap)
        Execute the translet.
        Parameters:
        name - the translet name
        method - the request method
        parameterMap - the parameter map
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           MethodType method,
                           java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Execute the translet.
        Parameters:
        name - the translet name
        method - the request method
        attributeMap - the attribute map
        Returns:
        the Translet object
      • translate

        Translet translate​(java.lang.String name,
                           MethodType method,
                           ParameterMap parameterMap,
                           java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Execute the translet.
        Parameters:
        name - the translet name
        method - the request method
        parameterMap - the parameter map
        attributeMap - the attribute map
        Returns:
        the Translet object
      • template

        java.lang.String template​(java.lang.String templateId)
        Evaluate the template without any provided variables.
        Parameters:
        templateId - the template id
        Returns:
        the output string of the template
      • template

        java.lang.String template​(java.lang.String templateId,
                                  ParameterMap parameterMap)
        Evaluate the template with a set of parameters.
        Parameters:
        templateId - the template id
        parameterMap - the parameter map
        Returns:
        the output string of the template
      • template

        java.lang.String template​(java.lang.String templateId,
                                  java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Evaluate the template with a set of parameters.
        Parameters:
        templateId - the template id
        attributeMap - the attribute map
        Returns:
        the output string of the template
      • template

        java.lang.String template​(java.lang.String templateId,
                                  ParameterMap parameterMap,
                                  java.util.Map<java.lang.String,​java.lang.Object> attributeMap)
        Evaluate the template with a set of parameters and a set of attributes.
        Parameters:
        templateId - the template id
        parameterMap - the parameter map
        attributeMap - the attribute map
        Returns:
        the output string of the template
      • release

        void release()
        Stop the service and release all allocated resources.
      • run

        static EmbeddedAspectran run​(java.lang.String aspectranConfigFile)
        Creates and starts a new DefaultEmbeddedAspectran.
        Parameters:
        aspectranConfigFile - the aspectran configuration file
        Returns:
        the instance of EmbeddedAspectran
      • run

        static EmbeddedAspectran run​(java.io.File aspectranConfigFile)
        Creates and starts a new DefaultEmbeddedAspectran.
        Parameters:
        aspectranConfigFile - the aspectran configuration file
        Returns:
        the instance of EmbeddedAspectran
      • run

        static EmbeddedAspectran run​(java.io.Reader configFileReader)
        Creates and starts a new DefaultEmbeddedAspectran.
        Parameters:
        configFileReader - the aspectran configuration file reader
        Returns:
        the instance of EmbeddedAspectran
      • run

        static EmbeddedAspectran run​(AspectranConfig aspectranConfig)
        Creates and starts a new DefaultEmbeddedAspectran.
        Parameters:
        aspectranConfig - the parameters for aspectran configuration
        Returns:
        the instance of EmbeddedAspectran