Switch.java :  » Workflow-Engines » bexee » bexee » model » activity » Java Open Source

Java Open Source » Workflow Engines » bexee 
bexee » bexee » model » activity » Switch.java
/*
 * $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();

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.