• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface AuthenticationInfoHeader extends Header, Parameters {
6     String NAME = "Authentication-Info";
7 
getCNonce()8     String getCNonce();
setCNonce(String cNonce)9     void setCNonce(String cNonce) throws ParseException;
10 
getNextNonce()11     String getNextNonce();
setNextNonce(String nextNonce)12     void setNextNonce(String nextNonce) throws ParseException;
13 
getNonceCount()14     int getNonceCount();
setNonceCount(int nonceCount)15     void setNonceCount(int nonceCount) throws ParseException;
16 
getQop()17     String getQop();
setQop(String qop)18     void setQop(String qop) throws ParseException;
19 
getResponse()20     String getResponse();
setResponse(String response)21     void setResponse(String response) throws ParseException;
22 }
23