Skip to content

Commit

Permalink
Fixes #258, rename some Java EE and JSR-299 refs
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartwdouglas committed Aug 12, 2019
1 parent 06293c2 commit 10bb03a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/javax/servlet/AsyncContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ public interface AsyncContext {
* The given AsyncListener class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Java EE
* platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* <p>
* This method supports any annotations applicable to AsyncListener.
Expand Down
24 changes: 12 additions & 12 deletions api/src/main/java/javax/servlet/ServletContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ public interface ServletContext {
* {@link javax.servlet.annotation.ServletSecurity}, {@link javax.servlet.annotation.MultipartConfig},
* <tt>javax.annotation.security.RunAs</tt>, and <tt>javax.annotation.security.DeclareRoles</tt> annotations. In
* addition, this method supports resource injection if the class with the given <tt>className</tt> represents a
* Managed Bean. See the Java EE platform and JSR 299 specifications for additional details about Managed Beans and
* Managed Bean. See the Jakarta EE platform and CDI specifications for additional details about Managed Beans and
* resource injection.
*
* @param servletName the name of the servlet
Expand Down Expand Up @@ -702,7 +702,7 @@ public interface ServletContext {
* This method introspects the given <tt>servletClass</tt> for the {@link javax.servlet.annotation.ServletSecurity},
* {@link javax.servlet.annotation.MultipartConfig}, <tt>javax.annotation.security.RunAs</tt>, and
* <tt>javax.annotation.security.DeclareRoles</tt> annotations. In addition, this method supports resource injection
* if the given <tt>servletClass</tt> represents a Managed Bean. See the Java EE platform and JSR 299 specifications
* if the given <tt>servletClass</tt> represents a Managed Bean. See the Jakarta EE platform and CDI specifications
* for additional details about Managed Beans and resource injection.
*
* @param servletName the name of the servlet
Expand Down Expand Up @@ -771,8 +771,8 @@ public interface ServletContext {
* This method introspects the given <tt>clazz</tt> for the following annotations:
* {@link javax.servlet.annotation.ServletSecurity}, {@link javax.servlet.annotation.MultipartConfig},
* <tt>javax.annotation.security.RunAs</tt>, and <tt>javax.annotation.security.DeclareRoles</tt>. In addition, this
* method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Java EE
* platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the Servlet to create
* @param clazz the Servlet class to instantiate
Expand Down Expand Up @@ -850,7 +850,7 @@ public interface ServletContext {
*
* <p>
* This method supports resource injection if the class with the given <tt>className</tt> represents a Managed Bean.
* See the Java EE platform and JSR 299 specifications for additional details about Managed Beans and resource
* See the Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource
* injection.
*
* @param filterName the name of the filter
Expand Down Expand Up @@ -920,7 +920,7 @@ public interface ServletContext {
*
* <p>
* This method supports resource injection if the given <tt>filterClass</tt> represents a Managed Bean. See the Java
* EE platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param filterName the name of the filter
* @param filterClass the class object from which the filter will be instantiated
Expand Down Expand Up @@ -954,8 +954,8 @@ public interface ServletContext {
* The given Filter class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Java EE
* platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the Filter to create
* @param clazz the Filter class to instantiate
Expand Down Expand Up @@ -1139,7 +1139,7 @@ public interface ServletContext {
*
* <p>
* This method supports resource injection if the class with the given <tt>className</tt> represents a Managed Bean.
* See the Java EE platform and JSR 299 specifications for additional details about Managed Beans and resource
* See the Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource
* injection.
*
* @param className the fully qualified class name of the listener
Expand Down Expand Up @@ -1232,7 +1232,7 @@ public interface ServletContext {
*
* <p>
* This method supports resource injection if the given <tt>listenerClass</tt> represents a Managed Bean. See the
* Java EE platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* Jakarta EE platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param listenerClass the listener class to be instantiated
*
Expand Down Expand Up @@ -1270,8 +1270,8 @@ public interface ServletContext {
* The given EventListener class must define a zero argument constructor, which is used to instantiate it.
*
* <p>
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Java EE
* platform and JSR 299 specifications for additional details about Managed Beans and resource injection.
* This method supports resource injection if the given <tt>clazz</tt> represents a Managed Bean. See the Jakarta EE
* platform and CDI specifications for additional details about Managed Beans and resource injection.
*
* @param <T> the class of the EventListener to create
* @param clazz the EventListener class to instantiate
Expand Down

0 comments on commit 10bb03a

Please sign in to comment.