public interface AuthenticationInfoHeader extends Parameters, Header
For Example:
Authentication-Info: nextnonce="47364c23432d2e131a5fb210812c"
Modifier and Type | Field and Description |
---|---|
static String |
NAME
Name of the AlertInfoHeader
|
Modifier and Type | Method and Description |
---|---|
String |
getCNonce()
Returns the CNonce value of this AuthenticationInfoHeader.
|
String |
getNextNonce()
Returns the nextNonce value of this AuthenticationInfoHeader.
|
int |
getNonceCount()
Returns the Nonce Count value of this AuthenticationInfoHeader.
|
String |
getQop()
Returns the messageQop value of this AuthenticationInfoHeader.
|
String |
getResponse()
Returns the Response value of this AuthenticationInfoHeader.
|
void |
setCNonce(String cNonce)
Sets the CNonce of the AuthenticationInfoHeader to the cNonce
parameter value.
|
void |
setNextNonce(String nextNonce)
Sets the NextNonce of the AuthenticationInfoHeader to the nextNonce
parameter value.
|
void |
setNonceCount(int nonceCount)
Sets the Nonce Count of the AuthenticationInfoHeader to the nonceCount
parameter value.
|
void |
setQop(String qop)
Sets the Qop value of the AuthenticationInfoHeader to the new
qop parameter value.
|
void |
setResponse(String response)
Sets the Response of the AuthenticationInfoHeader to the new response
parameter value.
|
getParameter, getParameterNames, removeParameter, setParameter
static final String NAME
void setNextNonce(String nextNonce) throws ParseException
nextNonce
- - the new nextNonce String of this AuthenticationInfoHeader.ParseException
- which signals that an error has been reached
unexpectedly while parsing the nextNonce value.String getNextNonce()
void setQop(String qop) throws ParseException
qop
- - the new Qop string of this AuthenticationInfoHeader.ParseException
- which signals that an error has been reached
unexpectedly while parsing the Qop value.String getQop()
void setCNonce(String cNonce) throws ParseException
cNonce
- - the new cNonce String of this AuthenticationInfoHeader.ParseException
- which signals that an error has been reached
unexpectedly while parsing the cNonce value.String getCNonce()
void setNonceCount(int nonceCount) throws ParseException
nonceCount
- - the new nonceCount integer of this AuthenticationInfoHeader.ParseException
- which signals that an error has been reached
unexpectedly while parsing the nonceCount value.int getNonceCount()
void setResponse(String response) throws ParseException
response
- - the new response String of this AuthenticationInfoHeader.ParseException
- which signals that an error has been reached
unexpectedly while parsing the Response.String getResponse()
Copyright © 2018. All Rights Reserved.