Skip to content

Commit 482f1e0

Browse files
committed
Fix Javadoc build
1 parent 70403d8 commit 482f1e0

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

openam-core/src/main/java/org/openidentityplatform/openam/click/service/ClickResourceService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ public void onInit(ServletContext servletContext) throws IOException {
6767
}
6868

6969
/**
70-
* @see org.apache.click.service.ResourceService#onDestroy()
70+
* @see org.openidentityplatform.openam.click.service.ResourceService#onDestroy()
7171
*/
7272
public void onDestroy() {
7373
resourceCache.clear();
7474
}
7575

7676
/**
77-
* @see org.apache.click.service.ResourceService#isResourceRequest(HttpServletRequest)
77+
* @see org.openidentityplatform.openam.click.service.ResourceService#isResourceRequest(HttpServletRequest)
7878
*
7979
* @param request the servlet request
8080
* @return true if the request is for a static click resource

openam-distribution/src/main/amserver/demo/source/com/sun/identity/demo/server/EvaluatePolicyServlet.java

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* your own identifying information:
2323
* "Portions Copyrighted [year] [name of copyright owner]"
2424
*
25+
* Portions Copyrighted 2025 3A Systems LLC
26+
*
2527
* $Id: EvaluatePolicyServlet.java,v 1.2 2008/06/25 05:40:25 qcheng Exp $
2628
*
2729
*/
@@ -33,11 +35,11 @@
3335
import java.util.Set;
3436
import java.util.HashSet;
3537

36-
import javax.servlet.ServletException;
37-
import javax.servlet.ServletConfig;
38-
import javax.servlet.http.HttpServlet;
39-
import javax.servlet.http.HttpServletRequest;
40-
import javax.servlet.http.HttpServletResponse;
38+
import jakarta.servlet.ServletException;
39+
import jakarta.servlet.ServletConfig;
40+
import jakarta.servlet.http.HttpServlet;
41+
import jakarta.servlet.http.HttpServletRequest;
42+
import jakarta.servlet.http.HttpServletResponse;
4143

4244
import com.sun.identity.shared.debug.Debug;
4345
//import com.iplanet.am.util.Debug;

openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/spi/handlers/OpenAMAuthHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
* </pre>
116116
* <p/>
117117
* Of special note to authentication module implementors is what modules are allowed in the chain used by a radius
118-
* client. If an authentication module uses {@link javax.servlet.http.HttpServletRequest} or
118+
* client. If an authentication module uses {@link jakarta.servlet.http.HttpServletRequest} or
119119
* {@link javax.servlet.http.HttpServletResponse} they generally won't work for radius clients without modification. For
120-
* non-http clients the {@link javax.servlet.http.HttpServletRequest} and {@link javax.servlet.http.HttpServletResponse}
120+
* non-http clients the {@link jakarta.servlet.http.HttpServletRequest} and {@link jakarta.servlet.http.HttpServletResponse}
121121
* objects will be null typically leading to a {@link java.lang.NullPointerException}. Looking for a value of null is
122122
* how such modules can tell if they are dealing with a non-http client and adjust their behavior accordingly.
123123
* <p/>

openam-test/src/test/java/com/sun/identity/setup/TestInstaller.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* your own identifying information:
2323
* "Portions Copyrighted [year] [name of copyright owner]"
2424
*
25+
* Portions Copyrighted 2025 3A Systems LLC
26+
*
2527
* $Id: TestInstaller.java,v 1.5 2008/08/19 19:09:34 veiming Exp $
2628
*
2729
*/
@@ -54,10 +56,10 @@
5456
import java.util.ResourceBundle;
5557
import java.util.StringTokenizer;
5658
import java.security.AccessController;
57-
import javax.servlet.ServletConfig;
58-
import javax.servlet.ServletContext;
59-
import javax.servlet.http.HttpServletRequest;
60-
import javax.servlet.http.HttpServletResponse;
59+
import jakarta.servlet.ServletConfig;
60+
import jakarta.servlet.ServletContext;
61+
import jakarta.servlet.http.HttpServletRequest;
62+
import jakarta.servlet.http.HttpServletResponse;
6163

6264
/**
6365
* This class is the first class to get loaded by the Servlet container.

0 commit comments

Comments
 (0)