Package com.netscape.certsrv.system
Interface SecurityDomainHostResource
-
- All Known Implementing Classes:
SecurityDomainHostService
@Path("securityDomain/hosts") public interface SecurityDomainHostResource
- Author:
- Endi S. Dewata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.Response
addHost(SecurityDomainHost host)
javax.ws.rs.core.Response
getHost(java.lang.String hostID)
javax.ws.rs.core.Response
getHosts()
javax.ws.rs.core.Response
removeHost(java.lang.String hostID)
-
-
-
Method Detail
-
getHosts
@GET javax.ws.rs.core.Response getHosts() throws java.lang.Exception
- Throws:
java.lang.Exception
-
getHost
@GET @Path("{hostID}") javax.ws.rs.core.Response getHost(@PathParam("hostID") java.lang.String hostID) throws java.lang.Exception
- Throws:
java.lang.Exception
-
addHost
@PUT javax.ws.rs.core.Response addHost(SecurityDomainHost host) throws java.lang.Exception
- Throws:
java.lang.Exception
-
removeHost
@DELETE @Path("{hostID}") javax.ws.rs.core.Response removeHost(@PathParam("hostID") java.lang.String hostID) throws java.lang.Exception
- Throws:
java.lang.Exception
-
-