Skip to content

Commit 56cfc07

Browse files
authored
Docs: fix javadoc build error (#1015)
1 parent a13a4b6 commit 56cfc07

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
-pl '-:openam-ui,-:openam-ui-ria,-:openam-ui-api,-:openam-ui-js-sdk' \
6363
-pl '-:openam-server-auth-ui,-:openam-doc-ssoadm-ref,-:openam-liberty-schema' \
6464
-pl '-:openam-example-api-descriptor,-:openam-example-clientsdk-cli,-:openam-example-clientsdk-war' \
65-
-pl '-:bcpkix-shaded'
65+
-pl '-:bcpkix-shaded' -pl '-:jato-shaded'
6666
- name: Upload artifacts OpenAM Distribution Kit, containing all distributable artifacts
6767
uses: actions/upload-artifact@v6
6868
with:

openam-core/src/main/java/com/iplanet/dpro/session/share/SessionEncodeURL.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* $Id: SessionEncodeURL.java,v 1.7 2008/08/19 19:08:41 veiming Exp $
2626
*
2727
* Portions Copyrighted 2011-2015 ForgeRock AS.
28-
* Portions Copyrighted 2025 3A Systems LLC.
28+
* Portions Copyrighted 2025-2026 3A Systems LLC.
2929
*/
3030
package com.iplanet.dpro.session.share;
3131

@@ -274,7 +274,7 @@ private static String getSidFromQuery(HttpServletRequest request,
274274

275275
/**
276276
* Encodes the specified URL by including the session ID in it. Similar to
277-
* <code>javax.servlet.http.HttpServletResponse.encodeURL()</code>. session
277+
* <code>jakarta.servlet.http.HttpServletResponse.encodeURL()</code>. session
278278
* ID will be only be included if the client needs encoding.
279279
*
280280
* @param url URL to be rewritten with the session ID.

openam-core/src/main/java/com/iplanet/services/comm/client/PLLNotificationServlet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* $Id: PLLNotificationServlet.java,v 1.6 2008/08/19 19:08:43 veiming Exp $
2626
*
2727
* Portions Copyrighted 2011-2014 ForgeRock AS.
28-
* Portions Copyrighted 2025 3A Systems LLC.
28+
* Portions Copyrighted 2025-2026 3A Systems LLC.
2929
*/
3030
package com.iplanet.services.comm.client;
3131

@@ -68,7 +68,7 @@ public void init() throws ServletException {
6868
* HttpServletNotification Reference to HttpServletNotification object
6969
* @param HttpServletResponse Reference to HttpServletResponse object
7070
*
71-
* @see javax.servlet.http.HttpServlet
71+
* @see jakarta.servlet.http.HttpServlet
7272
*/
7373
public void doPost(HttpServletRequest request, HttpServletResponse response)
7474
throws ServletException, java.io.IOException {

openam-core/src/main/java/com/iplanet/services/comm/server/PLLRequestServlet.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* $Id: PLLRequestServlet.java,v 1.9 2009/02/12 17:24:13 bina Exp $
2626
*
2727
* Portions Copyrighted 2012-2015 ForgeRock AS.
28-
* Portions Copyrighted 2025 3A Systems LLC.
28+
* Portions Copyrighted 2025-2026 3A Systems LLC.
2929
*/
3030
package com.iplanet.services.comm.server;
3131

@@ -96,7 +96,7 @@ public void init() throws ServletException {
9696
* HttpServletRequest Reference to HttpServletRequest object @param
9797
* HttpServletResponse Reference to HttpServletResponse object
9898
*
99-
* @see javax.servlet.http.HttpServlet
99+
* @see jakarta.servlet.http.HttpServlet
100100
*/
101101
public void doPost(HttpServletRequest req, HttpServletResponse res)
102102
throws ServletException, java.io.IOException {

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
@@ -13,7 +13,7 @@
1313
*
1414
* Copyrighted 2015 Intellectual Reserve, Inc (IRI)
1515
* Portions Copyrighted 2016 ForgeRock AS.
16-
* Portions copyright 2025 3A Systems LLC.
16+
* Portions copyright 2025-2026 3A Systems LLC.
1717
*/
1818
package org.forgerock.openam.radius.server.spi.handlers;
1919

@@ -116,7 +116,7 @@
116116
* <p/>
117117
* Of special note to authentication module implementors is what modules are allowed in the chain used by a radius
118118
* client. If an authentication module uses {@link jakarta.servlet.http.HttpServletRequest} or
119-
* {@link javax.servlet.http.HttpServletResponse} they generally won't work for radius clients without modification. For
119+
* {@link jakarta.servlet.http.HttpServletResponse} they generally won't work for radius clients without modification. For
120120
* 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.

0 commit comments

Comments
 (0)