/*
* $Id: Switch.java,v 1.5 2004/11/22 08:47:56 kowap Exp $
*
* Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
* Berne University of Applied Sciences
* School of Engineering and Information Technology
* All rights reserved.
*/
package bexee.model.activity;
import java.util.List;
import bexee.model.elements.BpelCase;
/**
* This is a structured switch activity. One of the contained activities will de
* executed depending on the switch condition.
*
* @author Patric Fornasier
* @author Pawel Kowalski
* @version $Revision: 1.5 $, $Date: 2004/11/22 08:47:56 $
*/
public interface Switch extends Activity {
public void addCase(BpelCase bpelCase);
public List getCases();
public void setOtherwise(Activity activity);
public Activity getOtherwise();
}
|