Home | History | Annotate | Download | only in clientauthutils

Lines Matching refs:Response

49 import javax.sip.message.Response;
122 * @see gov.nist.javax.sip.clientauthutils.AuthenticationHelper#handleChallenge(javax.sip.message.Response,
125 public ClientTransaction handleChallenge(Response challenge,
177 if (challenge.getStatusCode() == Response.UNAUTHORIZED) {
179 } else if (challenge.getStatusCode() == Response.PROXY_AUTHENTICATION_REQUIRED) {
283 * Generates an authorisation header in response to wwwAuthHeader.
291 * @return an authorisation header in response to authHeader.
297 String response = null;
306 response = MessageDigestAlgorithm.calculateResponse(authHeader.getAlgorithm(),
325 authorization.setResponse(response);
341 authorization.setResponse(response);
350 * Generates an authorisation header in response to wwwAuthHeader.
358 * @return an authorisation header in response to authHeader.
364 String response = null;
373 response = MessageDigestAlgorithm.calculateResponse(authHeader.getAlgorithm(),
391 authorization.setResponse(response);
407 authorization.setResponse(response);