Interface TPSConnectorResource


@Path("/admin/tps-connectors") public interface TPSConnectorResource
Author:
Ade Lee
  • Method Details

    • findConnectors

      @GET javax.ws.rs.core.Response findConnectors(@QueryParam("host") String host, @QueryParam("port") String port, @QueryParam("start") Integer start, @QueryParam("size") Integer size)
    • getConnector

      @GET @Path("{id}") javax.ws.rs.core.Response getConnector(@PathParam("id") String id)
    • createConnector

      @POST javax.ws.rs.core.Response createConnector(@QueryParam("host") String host, @QueryParam("port") String port)
    • modifyConnector

      @POST @Path("{id}") javax.ws.rs.core.Response modifyConnector(@PathParam("id") String id, TPSConnectorData data)
    • deleteConnector

      @DELETE @Path("{id}") javax.ws.rs.core.Response deleteConnector(@PathParam("id") String id)
    • createSharedSecret

      @POST @Path("{id}/shared-secret") javax.ws.rs.core.Response createSharedSecret(@PathParam("id") String id)
    • replaceSharedSecret

      @PUT @Path("{id}/shared-secret") javax.ws.rs.core.Response replaceSharedSecret(@PathParam("id") String id)
    • deleteSharedSecret

      @DELETE @Path("{id}/shared-secret") javax.ws.rs.core.Response deleteSharedSecret(@PathParam("id") String id)
    • deleteConnector

      @DELETE javax.ws.rs.core.Response deleteConnector(@QueryParam("host") String host, @QueryParam("port") String port)
    • getSharedSecret

      @GET @Path("{id}/shared-secret") javax.ws.rs.core.Response getSharedSecret(@PathParam("id") String id)