Interface SecurityDomainResource

All Known Implementing Classes:
SecurityDomainService

@Path("securityDomain") public interface SecurityDomainResource
Author:
alee, Endi S. Dewata
  • Method Details

    • getInstallToken

      @GET @Path("installToken") javax.ws.rs.core.Response getInstallToken(@QueryParam("hostname") String hostname, @QueryParam("subsystem") String subsystem)
    • getDomainInfo

      @GET @Path("domainInfo") javax.ws.rs.core.Response getDomainInfo()
    • getHosts

      @GET @Path("hosts") javax.ws.rs.core.Response getHosts()
    • getHost

      @GET @Path("hosts/{hostID}") javax.ws.rs.core.Response getHost(@PathParam("hostID") String hostID)
    • addHost

      @PUT @Path("hosts") javax.ws.rs.core.Response addHost(SecurityDomainHost host)
    • removeHost

      @DELETE @Path("hosts/{hostID}") javax.ws.rs.core.Response removeHost(@PathParam("hostID") String hostID)