KickJava   Java API By Example, From Geeks To Geeks.

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


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  * Class FlowIncludeImpl
20  */

21 public class FlowIncludeImpl implements FlowInclude {
22     /**
23      * Field in
24      */

25     private Flow in;
26
27     /**
28      * Field out
29      */

30     private Flow out;
31
32     /**
33      * Field fault
34      */

35     private Flow In_fault;
36
37     private Flow Out_fault;
38
39     /**
40      * Method getFaultInFlow
41      *
42      * @return
43      */

44     public Flow getFaultInFlow() {
45         return In_fault;
46     }
47
48     /**
49      * Method getInFlow
50      *
51      * @return
52      */

53     public Flow getInFlow() {
54         return in;
55     }
56
57     /**
58      * Method getOutFlow
59      *
60      * @return
61      */

62     public Flow getOutFlow() {
63         return out;
64     }
65
66     /**
67      * Method setFaultInFlow
68      *
69      * @param flow
70      */

71     public void setFaultInFlow(Flow flow) {
72         this.In_fault = flow;
73     }
74
75     public Flow getFaultOutFlow() {
76         return this.Out_fault; //To change body of implemented methods use File | Settings | File Templates.
77
}
78
79     public void setFaultOutFlow(Flow faultFlow) {
80         this.Out_fault = faultFlow;
81     }
82
83     /**
84      * Method setInFlow
85      *
86      * @param flow
87      */

88     public void setInFlow(Flow flow) {
89         this.in = flow;
90     }
91
92     /**
93      * Method setOutFlow
94      *
95      * @param flow
96      */

97     public void setOutFlow(Flow flow) {
98         this.out = flow;
99     }
100 }
101
Popular Tags