Home | History | Annotate | Download | only in header
      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      */
     11     URI getURI();
     12 
     13     /**
     14      * @deprecated This method should return immediately.
     15      */
     16     void setURI(URI uri);
     17 }
     18