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