1 16 package org.apache.axis2.description; 17 18 21 public class FlowIncludeImpl implements FlowInclude { 22 25 private Flow in; 26 27 30 private Flow out; 31 32 35 private Flow In_fault; 36 37 private Flow Out_fault; 38 39 44 public Flow getFaultInFlow() { 45 return In_fault; 46 } 47 48 53 public Flow getInFlow() { 54 return in; 55 } 56 57 62 public Flow getOutFlow() { 63 return out; 64 } 65 66 71 public void setFaultInFlow(Flow flow) { 72 this.In_fault = flow; 73 } 74 75 public Flow getFaultOutFlow() { 76 return this.Out_fault; } 78 79 public void setFaultOutFlow(Flow faultFlow) { 80 this.Out_fault = faultFlow; 81 } 82 83 88 public void setInFlow(Flow flow) { 89 this.in = flow; 90 } 91 92 97 public void setOutFlow(Flow flow) { 98 this.out = flow; 99 } 100 } 101 | Popular Tags |