Home | History | Annotate | Download | only in header

Lines Matching defs:reasonCode

54     protected String reasonCode;
121 return reasonCode;
127 * @param reasonCode - the new reason code string value of the SubscriptionStateHeader.
131 public void setReasonCode(String reasonCode) throws ParseException {
132 if (reasonCode == null)
135 + "Exception, SubscriptionState, setReasonCode(), the reasonCode parameter is null");
136 this.reasonCode = reasonCode;
173 if (reasonCode != null)
174 buffer.append(";reason=").append(reasonCode);