KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > axis2 > description > FlowInclude


1 /*
2  * Copyright 2004,2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.axis2.description;
17
18 /**
19  * Interface FlowInclude
20  */

21 public interface FlowInclude {
22
23     /**
24      * Method getInFlow
25      *
26      * @return
27      */

28     public Flow getInFlow();
29
30     /**
31      * Method setInFlow
32      *
33      * @param inFlow
34      */

35     public void setInFlow(Flow inFlow);
36
37     /**
38      * Method getOutFlow
39      *
40      * @return
41      */

42     public Flow getOutFlow();
43
44     /**
45      * Method setOutFlow
46      *
47      * @param outFlow
48      */

49     public void setOutFlow(Flow outFlow);
50
51     /**
52      * Method getFaultInFlow
53      *
54      * @return
55      */

56     public Flow getFaultInFlow();
57
58     /**
59      * Method setFaultInFlow
60      *
61      * @param faultFlow
62      */

63     public void setFaultInFlow(Flow faultFlow);
64
65     public Flow getFaultOutFlow();
66
67     /**
68      * Method setFaultInFlow
69      *
70      * @param faultFlow
71      */

72     public void setFaultOutFlow(Flow faultFlow);
73 }
74
Popular Tags