Package com.netscape.certsrv.profile
Interface ProfileResource
@Path("profiles")
public interface ProfileResource
-
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Response
createProfile
(String profileData) javax.ws.rs.core.Response
createProfileRaw
(byte[] data) javax.ws.rs.core.Response
deleteProfile
(String id) javax.ws.rs.core.Response
javax.ws.rs.core.Response
modifyProfile
(String id, String modifyProfileRequest) javax.ws.rs.core.Response
modifyProfileRaw
(String id, byte[] data) javax.ws.rs.core.Response
modifyProfileState
(String id, String action) javax.ws.rs.core.Response
javax.ws.rs.core.Response
-
Method Details
-
listProfiles
-
retrieveProfile
-
retrieveProfileRaw
@GET @Path("{id}/raw") javax.ws.rs.core.Response retrieveProfileRaw(@PathParam("id") String id) throws Exception - Throws:
Exception
-
createProfile
- Throws:
Exception
-
createProfileRaw
@POST @Path("raw") javax.ws.rs.core.Response createProfileRaw(byte[] data) -
modifyProfileState
@POST @Path("{id}") javax.ws.rs.core.Response modifyProfileState(@PathParam("id") String id, @QueryParam("action") String action) throws Exception - Throws:
Exception
-
modifyProfile
@PUT @Path("{id}") javax.ws.rs.core.Response modifyProfile(@PathParam("id") String id, String modifyProfileRequest) throws Exception - Throws:
Exception
-
modifyProfileRaw
@PUT @Path("{id}/raw") javax.ws.rs.core.Response modifyProfileRaw(@PathParam("id") String id, byte[] data) throws Exception - Throws:
Exception
-
deleteProfile
-