Interface DeploymentResource
-
- All Known Implementing Classes:
DeploymentResourceImpl
public interface DeploymentResource
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
deleteDeployment(String deploymentId, javax.ws.rs.core.UriInfo uriInfo)
DeploymentDto
getDeployment()
DeploymentResourcesResource
getDeploymentResources()
DeploymentDto
redeploy(javax.ws.rs.core.UriInfo uriInfo, RedeploymentDto redeployment)
-
-
-
Field Detail
-
CASCADE
static final String CASCADE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getDeployment
@GET @Produces("application/json") DeploymentDto getDeployment()
-
getDeploymentResources
@Path("/resources") DeploymentResourcesResource getDeploymentResources()
-
redeploy
@POST @Path("/redeploy") @Produces("application/json") DeploymentDto redeploy(@Context javax.ws.rs.core.UriInfo uriInfo, RedeploymentDto redeployment)
-
deleteDeployment
@DELETE void deleteDeployment(@PathParam("id") String deploymentId, @Context javax.ws.rs.core.UriInfo uriInfo)
-
-