Class FreemarkerResource
- java.lang.Object
-
- org.glassfish.jersey.examples.freemarker.resources.FreemarkerResource
-
-
Constructor Summary
Constructors Constructor Description FreemarkerResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.glassfish.jersey.server.mvc.ViewablegetAutoTemplate()org.glassfish.jersey.server.mvc.ViewablegetHello()org.glassfish.jersey.server.mvc.ViewablegetHelloWithDefaultModel()org.glassfish.jersey.server.mvc.ViewablegetHelloWithoutSuffix()
-
-
-
Method Detail
-
getHello
@GET @Path("hello") @Produces("text/html") public org.glassfish.jersey.server.mvc.Viewable getHello()
-
getHelloWithDefaultModel
@GET @Path("hello-default-model") @Produces("text/html") public org.glassfish.jersey.server.mvc.Viewable getHelloWithDefaultModel()
-
getAutoTemplate
@GET @Path("autoTemplate") @Produces("text/html") public org.glassfish.jersey.server.mvc.Viewable getAutoTemplate()
-
-