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

org.camunda.bpm.application.PostDeploy Maven / Gradle / Ivy

There is a newer version: 7.22.0-alpha5
Show newest version
/*
 * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
 * under one or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information regarding copyright
 * ownership. Camunda licenses this file to you under the Apache License,
 * Version 2.0; 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.camunda.bpm.application;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.camunda.bpm.engine.ProcessEngine;

/**
 * 

Annotation that can be placed on a method of a {@link AbstractProcessApplication ProcessApplication} class.

* *

The method will be invoked after the process application has been successfully deployed, meaning that *

    *
  • If the process application defines one or more {@link ProcessEngine ProcessEngines}, all process * engines have been successfully started and can be looked up.
  • *
  • If the process application defines one or more ProcessArchvies (deployments), all deployments have * completed successfully.
  • *
*

* *

LIMITATION: the annotation must be placed on a method of the same class carrying the * {@literal @}ProcessApplication annotation. Methods of superclasses are not detected.

* *

NOTE: A process application class must only define a single {@literal @}PostDeploy * Method.

* *

NOTE: if the {@literal @}PostDeploy method throws an exception, the deployment of the process application will * be rolled back, all process engine deployments will be removed and all process engines defined by this * application will be stopped.

* *

Basic Usage example:

*
 * {@literal @}ProcessApplication("My Process Application")
 * public class MyProcessApplication extends ServletProcessApplication {
 *  
 *  {@literal @}PostDeploy
 *  public void startProcess(ProcessEngine processEngine) {
 *    processEngine.getRuntimeService()
 *      .startProcessInstanceByKey("invoiceProcess");
 *  }
 *  
 * }
 * 
* *

A method annotated with {@literal @}PostDeploy may additionally take the following set of * parameters, in any oder: *

    *
  • {@link ProcessApplicationInfo}: the {@link ProcessApplicationInfo} object for this process application is injected
  • *
  • {@link ProcessEngine} the default process engine is injected
  • *
  • {@code List} all process engines to which this process application has performed deployments are * injected.
  • *
* * * @author Daniel Meyer * * @see PreUndeploy * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface PostDeploy { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy