Package org.camunda.bpm.engine.rest.impl
Class DeploymentRestServiceImpl
- java.lang.Object
-
- org.camunda.bpm.engine.rest.spi.impl.AbstractProcessEngineAware
-
- org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
-
- org.camunda.bpm.engine.rest.impl.DeploymentRestServiceImpl
-
- All Implemented Interfaces:
DeploymentRestService
public class DeploymentRestServiceImpl extends AbstractRestProcessEngineAware implements DeploymentRestService
-
-
Field Summary
Fields Modifier and Type Field Description static String
DEPLOY_CHANGED_ONLY
static String
DEPLOYMENT_ACTIVATION_TIME
static String
DEPLOYMENT_NAME
static String
DEPLOYMENT_SOURCE
static String
ENABLE_DUPLICATE_FILTERING
protected static Set<String>
RESERVED_KEYWORDS
static String
TENANT_ID
-
Fields inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
objectMapper, relativeRootResourcePath
-
Fields inherited from class org.camunda.bpm.engine.rest.spi.impl.AbstractProcessEngineAware
processEngine
-
Fields inherited from interface org.camunda.bpm.engine.rest.DeploymentRestService
PATH
-
-
Constructor Summary
Constructors Constructor Description DeploymentRestServiceImpl(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentWithDefinitionsDto
createDeployment(javax.ws.rs.core.UriInfo uriInfo, MultipartFormData payload)
DeploymentResource
getDeployment(String deploymentId)
List<DeploymentDto>
getDeployments(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
CountResultDto
getDeploymentsCount(javax.ws.rs.core.UriInfo uriInfo)
Set<String>
getRegisteredDeployments(javax.ws.rs.core.UriInfo uriInfo)
-
Methods inherited from class org.camunda.bpm.engine.rest.impl.AbstractRestProcessEngineAware
getObjectMapper, getProcessEngine, setRelativeRootResourceUri
-
-
-
-
Field Detail
-
DEPLOYMENT_NAME
public static final String DEPLOYMENT_NAME
- See Also:
- Constant Field Values
-
DEPLOYMENT_ACTIVATION_TIME
public static final String DEPLOYMENT_ACTIVATION_TIME
- See Also:
- Constant Field Values
-
ENABLE_DUPLICATE_FILTERING
public static final String ENABLE_DUPLICATE_FILTERING
- See Also:
- Constant Field Values
-
DEPLOY_CHANGED_ONLY
public static final String DEPLOY_CHANGED_ONLY
- See Also:
- Constant Field Values
-
DEPLOYMENT_SOURCE
public static final String DEPLOYMENT_SOURCE
- See Also:
- Constant Field Values
-
TENANT_ID
public static final String TENANT_ID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DeploymentRestServiceImpl
public DeploymentRestServiceImpl(String engineName, com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
-
Method Detail
-
getDeployment
public DeploymentResource getDeployment(String deploymentId)
- Specified by:
getDeployment
in interfaceDeploymentRestService
-
getDeployments
public List<DeploymentDto> getDeployments(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)
- Specified by:
getDeployments
in interfaceDeploymentRestService
-
createDeployment
public DeploymentWithDefinitionsDto createDeployment(javax.ws.rs.core.UriInfo uriInfo, MultipartFormData payload)
- Specified by:
createDeployment
in interfaceDeploymentRestService
-
getDeploymentsCount
public CountResultDto getDeploymentsCount(javax.ws.rs.core.UriInfo uriInfo)
- Specified by:
getDeploymentsCount
in interfaceDeploymentRestService
-
getRegisteredDeployments
public Set<String> getRegisteredDeployments(javax.ws.rs.core.UriInfo uriInfo)
- Specified by:
getRegisteredDeployments
in interfaceDeploymentRestService
-
-