blob: ccdc30e3e54badb1c01d44ed505ff44810cc2aa9 [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;
/**
* API for a bpm human task
*/
public abstract class AbstractBlipBPMUserTask extends AbstractBlipBPMItem implements IBlipBPMUserTask {
protected final String onEntryFunction;
protected final String onExitFunction;
/** see {@link org.eclipse.osbp.bpm.api.AbstractBlipBPMItem#AbstractBPMItem(String, String)} */
protected AbstractBlipBPMUserTask(String blipId, String bpmId, String onEntryFunction, String onExitFunction) {
super(blipId, bpmId);
this.onEntryFunction = onEntryFunction;
this.onExitFunction = onExitFunction;
}
@Override
public final String getOnEntryFunction() {
return onEntryFunction;
}
@Override
public final String getOnExitFunction() {
return onExitFunction;
}
}