Skip to content

Commit

Permalink
Fixed javadocs referencing javax.servlet.
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
  • Loading branch information
sbordet committed Feb 19, 2021
1 parent 5c58495 commit 80f4254
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ protected Set<String> getOmittedMethods(String omission)
* Constraints can be added to the ConstraintSecurityHandler before the
* associated context is started. These constraints should persist across
* a stop/start. Others can be added after the associated context is starting
* (eg by a web.xml/web-fragment.xml, annotation or javax.servlet api call) -
* (eg by a web.xml/web-fragment.xml, annotation or jakarta.servlet api call) -
* these should not be persisted across a stop/start as they will be re-added on
* the restart.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ public FilterHolder addFilter(String filterClass, String pathSpec, EnumSet<Dispa
}

/**
* Convenience method to programmatically add a {@link javax.servlet.ServletContainerInitializer}.
* Convenience method to programmatically add a {@link ServletContainerInitializer}.
* @param sci the ServletContainerInitializer to register.
* @return the ServletContainerInitializerHolder that was created
*/
Expand All @@ -522,7 +522,7 @@ public ServletContainerInitializerHolder addServletContainerInitializer(ServletC
}

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

/**
* Convenience method to programmatically add a list of {@link javax.servlet.ServletContainerInitializer}.
* Convenience method to programmatically add a list of {@link ServletContainerInitializer}.
* The initializers are guaranteed to be called in the order they are passed into this method.
* @param sciHolders the ServletContainerInitializerHolders
*/
Expand Down

0 comments on commit 80f4254

Please sign in to comment.