1package javax.sip.header;
2
3import javax.sip.address.URI;
4
5public 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