Fixed javadocs referencing javax.servlet.

Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
Simone Bordet 2021-02-19 14:48:21 +01:00
parent 5c584958da
commit 80f4254f32
2 changed files with 4 additions and 4 deletions

View File

@ -852,7 +852,7 @@ public class ConstraintSecurityHandler extends SecurityHandler implements Constr
* 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.
*

View File

@ -507,7 +507,7 @@ public class ServletContextHandler extends ContextHandler
}
/**
* 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
*/
@ -522,7 +522,7 @@ public class ServletContextHandler extends ContextHandler
}
/**
* 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
@ -538,7 +538,7 @@ public class ServletContextHandler extends ContextHandler
}
/**
* 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
*/