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 8 String getCNonce(); 9 void setCNonce(String cNonce) throws ParseException; 10 11 String getNextNonce(); 12 void setNextNonce(String nextNonce) throws ParseException; 13 14 int getNonceCount(); 15 void setNonceCount(int nonceCount) throws ParseException; 16 17 String getQop(); 18 void setQop(String qop) throws ParseException; 19 20 String getResponse(); 21 void setResponse(String response) throws ParseException; 22 } 23