Home | History | Annotate | Download | only in header

Lines Matching defs:ErrorInfo

37  * ErrorInfo SIP Header.
46 public final class ErrorInfo
55 protected GenericURI errorInfo;
60 public ErrorInfo() {
66 * @param errorInfo -- the error information to set.
68 public ErrorInfo(GenericURI errorInfo) {
70 this.errorInfo = errorInfo;
79 new StringBuffer(LESS_THAN).append(errorInfo.toString()).append(
88 * Sets the ErrorInfo of the ErrorInfoHeader to the <var>errorInfo</var>
91 * @param errorInfo the new ErrorInfo of this ErrorInfoHeader.
93 public void setErrorInfo(javax.sip.address.URI errorInfo) {
94 this.errorInfo = (GenericURI) errorInfo;
99 * Returns the ErrorInfo value of this ErrorInfoHeader. This message
100 * may return null if a String message identifies the ErrorInfo.
102 * @return the URI representing the ErrorInfo.
105 return errorInfo;
127 * @return the stringified version of the ErrorInfo header.
134 ErrorInfo retval = (ErrorInfo) super.clone();
135 if (this.errorInfo != null)
136 retval.errorInfo = (GenericURI) this.errorInfo.clone();