@Path(value="/deployment/{deploymentId: [\\w\\.-]+(:[\\w\\.-]+){2,2}(:[\\w\\.-]*){0,2}}")
public interface DeploymentResource
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
deploy(JaxbDeploymentDescriptor deployDescriptor)
Queues a request to deploy the given deployment unit.
|
javax.ws.rs.core.Response |
getConfig()
Retrieve the status of the
DeploymentUnit specified in the URL. |
javax.ws.rs.core.Response |
listProcessDefinitions() |
javax.ws.rs.core.Response |
undeploy()
Queues a request to undeploy the deployment unit specified in the URL
|
@GET javax.ws.rs.core.Response getConfig()
DeploymentUnit specified in the URL.JaxbDeploymentUnit instance@POST @Path(value="/deploy") javax.ws.rs.core.Response deploy(JaxbDeploymentDescriptor deployDescriptor)
deployDescriptor - An optional DeploymentDescriptor instance specifying additional information about how
the deployment unit should be deployed.JaxbDeploymentJobResult instance with the initial status of the job@POST @Path(value="/undeploy") javax.ws.rs.core.Response undeploy()
JaxbDeploymentJobResult instance with the initial status of the job@GET @Path(value="/processes") javax.ws.rs.core.Response listProcessDefinitions()
Copyright © 2001–2016 JBoss by Red Hat. All rights reserved.