1 package javax.sip.header; 2 3 import javax.sip.address.URI; 4 5 public interface WWWAuthenticateHeader extends AuthorizationHeader { 6 String NAME = "WWW-Authenticate"; 7 8 /** 9 * @deprecated This method should return null. 10 */ getURI()11 URI getURI(); 12 13 /** 14 * @deprecated This method should return immediately. 15 */ setURI(URI uri)16 void setURI(URI uri); 17 } 18