java.lang.Object
com.sun.net.httpserver.Authenticator.Result
com.sun.net.httpserver.Authenticator.Retry
- Enclosing class:
Authenticator
Indicates an authentication must be retried. The
response code to be sent back is as returned from
getResponseCode()
. The Authenticator
must also have
set any necessary response headers in the given HttpExchange
before returning this Retry
object.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Returns the response code to send to the client.
-
Constructor Details
-
Retry
public Retry(int responseCode) Creates aRetry
instance with given response code.- Parameters:
responseCode
- the response code to associate with thisRetry
instance
-
-
Method Details
-
getResponseCode
public int getResponseCode()Returns the response code to send to the client.- Returns:
- the response code associated with this
Retry
instance
-