1 16 package org.apache.axis2.description; 17 18 21 public class PhaseRule { 22 23 25 28 private String before; 29 30 32 35 private String after; 36 37 40 private String phaseName; 41 42 45 private boolean phaseFirst; 46 47 50 private boolean phaseLast; 51 52 55 public PhaseRule() { 56 this.before = ""; 57 this.after = ""; 58 this.phaseName = ""; 59 } 60 61 public PhaseRule(String phaseName) { 62 this.before = ""; 63 this.after = ""; 64 this.phaseName = phaseName; 65 } 66 67 72 public String getBefore() { 73 return before; 74 } 75 76 81 public void setBefore(String before) { 82 this.before = before; 83 } 84 85 90 public String getAfter() { 91 return after; 92 } 93 94 99 public void setAfter(String after) { 100 this.after = after; 101 } 102 103 108 public String getPhaseName() { 109 return phaseName; 110 } 111 112 117 public void setPhaseName(String phaseName) { 118 this.phaseName = phaseName; 119 } 120 121 126 public boolean isPhaseFirst() { 127 return phaseFirst; 128 } 129 130 135 public void setPhaseFirst(boolean phaseFirst) { 136 this.phaseFirst = phaseFirst; 137 } 138 139 144 public boolean isPhaseLast() { 145 return phaseLast; 146 } 147 148 153 public void setPhaseLast(boolean phaseLast) { 154 this.phaseLast = phaseLast; 155 } 156 } 157 | Popular Tags |