/*
* $Id: Compensate.java,v 1.3 2004/12/08 12:14:34 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;
/**
* Representation of a Compensate BPEL element.
*
* @version $Revision: 1.3 $, $Date: 2004/12/08 12:14:34 $
* @author Patric Fornasier
* @author Pawel Kowalski
*/
public interface Compensate extends Activity {
//**************************************************/
// xml attributes
// **************************************************/
/**
* Set the root scope of this Compensate.
*
* @param scope
*/
public void setScope(Scope scope);
/**
* Get the root scope of this Compensate.
*
* @return
*/
public Scope getScope();
}
|