01: package edu.iu.uis.eden;
02:
03: import java.util.Collection;
04:
05: public interface WorkflowServiceError {
06: public Collection getChildren();
07:
08: public Collection getFlatChildrenList();
09:
10: public String getMessage();
11:
12: public String getKey();
13:
14: public String getArg1();
15:
16: public String getArg2();
17:
18: public void addChild(WorkflowServiceError busError);
19:
20: public void addChildren(Collection children);
21:
22: }
23:
24: /*
25: * Copyright 2003 The Trustees of Indiana University. All rights reserved.
26: *
27: * This file is part of the EDEN software package.
28: * For license information, see the LICENSE file in the top level directory
29: * of the EDEN source distribution.
30: */
|