1
1
/*
2
- * Copyright (c) 2006, 2013 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2006, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
24
24
*/
25
25
26
26
package com .sun .net .httpserver ;
27
- import java .net .*;
28
- import java .io .*;
29
- import java .util .*;
30
27
31
28
/**
32
29
* Authenticator represents an implementation of an HTTP authentication
38
35
*/
39
36
public abstract class Authenticator {
40
37
38
+ /**
39
+ * Constructor for subclasses to call.
40
+ */
41
+ protected Authenticator () { }
42
+
41
43
/**
42
44
* Base class for return type from authenticate() method
43
45
*/
44
- public abstract static class Result {}
46
+ public abstract static class Result {
47
+
48
+ /**
49
+ * Constructor for subclasses to call.
50
+ */
51
+ protected Result () {}
52
+ }
53
+
54
+
45
55
46
56
/**
47
57
* Indicates an authentication failure. The authentication
@@ -51,12 +61,20 @@ public static class Failure extends Result {
51
61
52
62
private int responseCode ;
53
63
64
+ /**
65
+ * Creates a {@code Failure} instance with given response code.
66
+ *
67
+ * @param responseCode The response code to associate with this
68
+ * {@code Failure} instance
69
+ */
54
70
public Failure (int responseCode ) {
55
71
this .responseCode = responseCode ;
56
72
}
57
73
58
74
/**
59
75
* returns the response code to send to the client
76
+ *
77
+ * @return The response code associated with this {@code Failure} instance
60
78
*/
61
79
public int getResponseCode () {
62
80
return responseCode ;
@@ -71,11 +89,19 @@ public int getResponseCode() {
71
89
public static class Success extends Result {
72
90
private HttpPrincipal principal ;
73
91
92
+ /**
93
+ * Creates a {@code Success} instance with given {@code Principal}.
94
+ *
95
+ * @param p The authenticated user you wish to set as Principal
96
+ */
74
97
public Success (HttpPrincipal p ) {
75
98
principal = p ;
76
99
}
77
100
/**
78
101
* returns the authenticated user Principal
102
+ *
103
+ * @return The {@code Principal} instance associated with the authenticated user
104
+ *
79
105
*/
80
106
public HttpPrincipal getPrincipal () {
81
107
return principal ;
@@ -93,12 +119,20 @@ public static class Retry extends Result {
93
119
94
120
private int responseCode ;
95
121
122
+ /**
123
+ * Creates a {@code Retry} instance with given response code.
124
+ *
125
+ * @param responseCode The response code to associate with this
126
+ * {@code Retry} instance
127
+ */
96
128
public Retry (int responseCode ) {
97
129
this .responseCode = responseCode ;
98
130
}
99
131
100
132
/**
101
133
* returns the response code to send to the client
134
+ *
135
+ * @return The response code associated with this {@code Retry} instance
102
136
*/
103
137
public int getResponseCode () {
104
138
return responseCode ;
@@ -120,6 +154,9 @@ public int getResponseCode() {
120
154
* headers needing to be sent back to the client are set in the
121
155
* given HttpExchange. The response code to be returned must be provided
122
156
* in the Retry object. Retry may occur multiple times.
157
+ *
158
+ * @param exch The HttpExchange upon which authenticate is called
159
+ * @return The result
123
160
*/
124
161
public abstract Result authenticate (HttpExchange exch );
125
162
}
0 commit comments