@Path("/service/common")
@ApplicationScoped
public class HttpService
extends Object
-
Constructor Summary
Constructors
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
HttpService
public HttpService()
-
Method Details
-
get
@Path("/get")
@GET
@Produces("text/plain")
public String get()
-
toUpper
@Path("/toUpper")
@POST
@Consumes("text/plain")
@Produces("text/plain")
public String toUpper(String message)
-
httpsGet
@Path("/https")
@GET
@Produces("text/plain")
public String httpsGet()
-
compress
@Path("/compress")
@GET
@Produces("text/plain")
public String compress()