001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one
003: * or more contributor license agreements. See the NOTICE file
004: * distributed with this work for additional information
005: * regarding copyright ownership. The ASF licenses this file
006: * to you under the Apache License, Version 2.0 (the
007: * "License"); you may not use this file except in compliance
008: * with the License. You may obtain a copy of the License at
009: *
010: * http://www.apache.org/licenses/LICENSE-2.0
011: *
012: * Unless required by applicable law or agreed to in writing,
013: * software distributed under the License is distributed on an
014: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015: * KIND, either express or implied. See the License for the
016: * specific language governing permissions and limitations
017: * under the License.
018: */
019:
020: package org.apache.axis2.description;
021:
022: /**
023: * Class FlowIncludeImpl
024: */
025: public class FlowInclude {
026:
027: /**
028: * Field fault
029: */
030: private Flow In_fault;
031: private Flow Out_fault;
032:
033: /**
034: * Field in
035: */
036: private Flow in;
037:
038: /**
039: * Field out
040: */
041: private Flow out;
042:
043: /**
044: * Method getFaultInFlow.
045: *
046: * @return Returns Flow.
047: */
048: public Flow getFaultInFlow() {
049: return In_fault;
050: }
051:
052: public Flow getFaultOutFlow() {
053: return this .Out_fault;
054: }
055:
056: /**
057: * Method getInFlow.
058: *
059: * @return Returns Flow.
060: */
061: public Flow getInFlow() {
062: return in;
063: }
064:
065: /**
066: * Method getOutFlow.
067: *
068: * @return Returns Flow.
069: */
070: public Flow getOutFlow() {
071: return out;
072: }
073:
074: /**
075: * Method setFaultInFlow.
076: *
077: * @param flow
078: */
079: public void setFaultInFlow(Flow flow) {
080: this .In_fault = flow;
081: }
082:
083: public void setFaultOutFlow(Flow faultFlow) {
084: this .Out_fault = faultFlow;
085: }
086:
087: /**
088: * Method setInFlow.
089: *
090: * @param flow
091: */
092: public void setInFlow(Flow flow) {
093: this .in = flow;
094: }
095:
096: /**
097: * Method setOutFlow.
098: *
099: * @param flow
100: */
101: public void setOutFlow(Flow flow) {
102: this.out = flow;
103: }
104: }
|