Class GloopTemplateMethods


  • public final class GloopTemplateMethods
    extends Object
    • Constructor Detail

      • GloopTemplateMethods

        public GloopTemplateMethods()
    • Method Detail

      • render

        public static String render​(String namespace,
                                    @GloopParameter(defaultValue="false")
                                    boolean fragment)
                             throws GloopException
        Return a rendered html from a gloop template using its name with provided inputs.
        Parameters:
        namespace - namespace of the gloop template
        fragment - if fragment is true, the Gloop template will be rendered as a fragment without the tags.
        Returns:
        rendered html of a gloop template
        Throws:
        GloopException
      • render

        public static String render​(String namespace,
                                    @GloopParameter(defaultValue="false")
                                    boolean fragment,
                                    @GloopParameter(defaultValue="true")
                                    boolean closeContext,
                                    Object... inputs)
                             throws GloopException
        Return a rendered html from a gloop template using its name with provided inputs.
        Parameters:
        namespace - namespace of the gloop template
        fragment - if fragment is true, the Gloop template will be rendered as a fragment without the tags.
        inputs - the inputs to be passed to the gloop template, following the order defined on the gloop template
        Returns:
        rendered html of a gloop template
        Throws:
        GloopException
      • render

        public static String render​(String namespace,
                                    @GloopParameter(defaultValue="false")
                                    boolean fragment,
                                    @GloopParameter(defaultValue="true")
                                    boolean closeContext,
                                    Map inputs)
                             throws GloopException
        Return a rendered html from a gloop template using its name with provided inputs.
        Parameters:
        namespace - namespace of the gloop template
        fragment - if fragment is true, the Gloop template will be rendered as a fragment without the tags.
        inputs - the inputs to be passed to the gloop gloop template, following the order defined on the gloop template
        Returns:
        rendered html of a gloop template
        Throws:
        GloopException
      • render

        public static String render​(String namespace,
                                    @GloopParameter(defaultValue="false")
                                    boolean fragment,
                                    @GloopParameter(defaultValue="true")
                                    boolean closeContext,
                                    Collection<?> inputs)
                             throws GloopException
        Return a rendered html from a gloop template using its name with provided inputs.
        Parameters:
        namespace - namespace of the gloop template
        fragment - if fragment is true, the Gloop template will be rendered as a fragment without the tags.
        inputs - the inputs to be passed to the gloop gloop template, following the order defined on the gloop template
        Returns:
        rendered html of a gloop template
        Throws:
        GloopException