Home | History | Annotate | Download | only in header

Lines Matching full:uri

72     public static final String URI = ParameterNames.URI;
117 || name.equalsIgnoreCase(ParameterNames.URI)
247 * Sets the URI of the WWWAuthenicateHeader to the <var>uri</var> parameter
250 * @param uri -
251 * the new URI of this AuthenicationHeader.
257 public void setURI(javax.sip.address.URI uri) {
258 if (uri != null) {
259 NameValue nv = new NameValue(ParameterNames.URI, uri);
263 throw new NullPointerException("Null URI");
268 * Returns the URI value of this WWWAuthenicateHeader, for example
271 * @return the URI representing the URI information, null if value is not
278 public javax.sip.address.URI getURI() {
279 return getParameterAsURI(ParameterNames.URI);