blob: 155709fda5a902682ecd3cd09e17f1434b804fac [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.bpm.api;
import java.util.List;
import org.eclipse.osbp.dsl.common.datatypes.IDto;
/**
* API for bpm items. See the <code><a href="../BlipDSL.xtext">blip grammar</a></code>
* <ul>
* <li>start events</li>
* <li>human tasks</li>
* <li>system tasks</li>
* <li>persist tasks</li>
* <li>gateways</li>
* <li>end events</i>
* </ul>
* The API allows modifying the process workload dto.
*/
public interface IBlipBPMItem {
/**
* @param workloadDto the process workload dto
* get the operative dtos of the process workload dto
*/
public List<IDto> getOperativeDtos(IDto workloadDto);
/**
* @return the class defining the operative dto
*/
public Class<?> getOperativeDtoClass();
public String getBlipId();
}