All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.engine.repository.Deployment Maven / Gradle / Ivy

The newest version!
/* 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.activiti.engine.repository;

import org.activiti.engine.api.internal.Internal;

import java.util.Date;

/**
 * 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.activiti.engine.RuntimeService}, the Activiti 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 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).
 *
 */

@Internal
public interface Deployment {

  String getId();

  String getName();

  Date getDeploymentTime();

  String getCategory();
  
  String getKey();

  String getTenantId();

  ProcessDefinition getProcessDefinition();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy