/*
* Bossa Workflow System
*
* $Id: CloseActivity.java,v 1.12 2004/03/03 20:54:49 gdvieira Exp $
*
* Copyright (C) 2003,2004 OpenBR Sistemas S/C Ltda.
*
* This file is part of Bossa.
*
* Bossa is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
package com.bigbross.bossa.wfnet;
import java.util.Map;
import com.bigbross.bossa.BossaException;
/**
* This class implements the close operation of <code>Activity</code>
* through the prevalence subsystem. <p>
*
* @author <a href="http://www.bigbross.com">BigBross Team</a>
* @see Activity#close()
*/
class CloseActivity extends WFNetTransaction {
private String caseTypeId;
private int caseId;
private int activityId;
private Map attributes;
/**
* Creates a new close operation. <p>
*
* @param activity the activity to be closed.
* @param attributes an optional attributes map.
*/
CloseActivity(Activity activity, Map attributes) {
this.activityId = activity.getId();
this.caseId = activity.getCase().getId();
this.caseTypeId = activity.getCaseType().getId();
this.attributes = attributes;
}
/**
* Executes the operation. <p>
*
* @exception SetAttributeException if the underlying expression
* evaluation system has problems setting an attribute.
* @exception EvaluationException if an expression evaluation error
* occurs. If this exception is thrown the state of the case
* may be left inconsistent.
* @see WFNetTransaction#execute(CaseTypeManager)
*/
protected Object execute(CaseTypeManager caseTypeManager)
throws BossaException {
Case caze = caseTypeManager.getCaseType(caseTypeId).getCase(caseId);
Activity activity = caze.getActivity(activityId);
return new Boolean(caze.close(activity, attributes));
}
}
|