Skip to content

Commit 80f4254

Browse files
committed
Fixed javadocs referencing javax.servlet.
Signed-off-by: Simone Bordet <[email protected]>
1 parent 5c58495 commit 80f4254

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

jetty-security/src/main/java/org/eclipse/jetty/security/ConstraintSecurityHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ protected Set<String> getOmittedMethods(String omission)
852852
* Constraints can be added to the ConstraintSecurityHandler before the
853853
* associated context is started. These constraints should persist across
854854
* a stop/start. Others can be added after the associated context is starting
855-
* (eg by a web.xml/web-fragment.xml, annotation or javax.servlet api call) -
855+
* (eg by a web.xml/web-fragment.xml, annotation or jakarta.servlet api call) -
856856
* these should not be persisted across a stop/start as they will be re-added on
857857
* the restart.
858858
*

jetty-servlet/src/main/java/org/eclipse/jetty/servlet/ServletContextHandler.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ public FilterHolder addFilter(String filterClass, String pathSpec, EnumSet<Dispa
507507
}
508508

509509
/**
510-
* Convenience method to programmatically add a {@link javax.servlet.ServletContainerInitializer}.
510+
* Convenience method to programmatically add a {@link ServletContainerInitializer}.
511511
* @param sci the ServletContainerInitializer to register.
512512
* @return the ServletContainerInitializerHolder that was created
513513
*/
@@ -522,7 +522,7 @@ public ServletContainerInitializerHolder addServletContainerInitializer(ServletC
522522
}
523523

524524
/**
525-
* Convenience method to programmatically add a {@link javax.servlet.ServletContainerInitializer}.
525+
* Convenience method to programmatically add a {@link ServletContainerInitializer}.
526526
* @param sci the ServletContainerInitializer to register.
527527
* @param classes the Set of application classes.
528528
* @return the ServletContainerInitializerHolder that was created
@@ -538,7 +538,7 @@ public ServletContainerInitializerHolder addServletContainerInitializer(ServletC
538538
}
539539

540540
/**
541-
* Convenience method to programmatically add a list of {@link javax.servlet.ServletContainerInitializer}.
541+
* Convenience method to programmatically add a list of {@link ServletContainerInitializer}.
542542
* The initializers are guaranteed to be called in the order they are passed into this method.
543543
* @param sciHolders the ServletContainerInitializerHolders
544544
*/

0 commit comments

Comments
 (0)