org.flowable.engine.repository.Deployment Maven / Gradle / Ivy
/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.flowable.engine.repository;
import org.flowable.common.engine.api.repository.EngineDeployment;
/**
* Represents a deployment that is already present in the process repository.
*
* A deployment is a container for resources such as process definitions, images, forms, etc.
*
* When a deployment is 'deployed' through the {@link org.flowable.engine.RuntimeService}, the process engine will recognize certain of such resource types and act upon them (eg process definitions
* will be parsed to an executable Java artifact).
*
* To create a Deployment, use the {@link org.flowable.engine.repository.DeploymentBuilder}. A Deployment on itself is a read-only object and its content cannot be changed after deployment
* (hence the builder that needs to be used).
*
* @author Tom Baeyens
* @author Joram Barrez
*/
public interface Deployment extends EngineDeployment {
String getParentDeploymentId();
}