@@ -106,8 +106,14 @@ class AnotherNonRootResourceClassJakarta { // $NonRootResourceClass
106106 public AnotherNonRootResourceClassJakarta () {
107107 }
108108
109- public AnotherNonRootResourceClassJakarta (@ BeanParam int beanParam , @ CookieParam ("" ) int cookieParam , @ FormParam ("" ) int formParam , // $InjectionAnnotation
110- @ HeaderParam ("" ) int headerParam , @ MatrixParam ("" ) int matrixParam , @ PathParam ("" ) int pathParam , @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
109+ public AnotherNonRootResourceClassJakarta (
110+ @ BeanParam int beanParam , // $InjectionAnnotation
111+ @ CookieParam ("" ) int cookieParam , // $InjectionAnnotation
112+ @ FormParam ("" ) int formParam , // $InjectionAnnotation
113+ @ HeaderParam ("" ) int headerParam , // $InjectionAnnotation
114+ @ MatrixParam ("" ) int matrixParam , // $InjectionAnnotation
115+ @ PathParam ("" ) int pathParam , // $InjectionAnnotation
116+ @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
111117 @ Context int context ) { // $InjectionAnnotation
112118 }
113119
@@ -120,14 +126,27 @@ class FooJakarta {
120126 FooJakarta () { // $BeanParamConstructor
121127 }
122128
123- public FooJakarta (@ BeanParam int beanParam , @ CookieParam ("" ) int cookieParam , @ FormParam ("" ) int formParam , // $InjectionAnnotation $BeanParamConstructor
124- @ HeaderParam ("" ) int headerParam , @ MatrixParam ("" ) int matrixParam , @ PathParam ("" ) int pathParam , @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
129+ public FooJakarta ( // $BeanParamConstructor
130+ @ BeanParam int beanParam , // $InjectionAnnotation
131+ @ CookieParam ("" ) int cookieParam , // $InjectionAnnotation
132+ @ FormParam ("" ) int formParam , // $InjectionAnnotation
133+ @ HeaderParam ("" ) int headerParam , // $InjectionAnnotation
134+ @ MatrixParam ("" ) int matrixParam , // $InjectionAnnotation
135+ @ PathParam ("" ) int pathParam , // $InjectionAnnotation
136+ @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
125137 @ Context int context ) { // $InjectionAnnotation
126138 }
127139
128- public FooJakarta (@ BeanParam int beanParam , @ CookieParam ("" ) int cookieParam , @ FormParam ("" ) int formParam , // $InjectionAnnotation
129- @ HeaderParam ("" ) int headerParam , @ MatrixParam ("" ) int matrixParam , @ PathParam ("" ) int pathParam , @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
130- @ Context int context , int paramWithoutAnnotation ) { // $InjectionAnnotation
140+ public FooJakarta (
141+ @ BeanParam int beanParam , // $InjectionAnnotation
142+ @ CookieParam ("" ) int cookieParam , // $InjectionAnnotation
143+ @ FormParam ("" ) int formParam , // $InjectionAnnotation
144+ @ HeaderParam ("" ) int headerParam , // $InjectionAnnotation
145+ @ MatrixParam ("" ) int matrixParam , // $InjectionAnnotation
146+ @ PathParam ("" ) int pathParam , // $InjectionAnnotation
147+ @ QueryParam ("" ) int queryParam , // $InjectionAnnotation
148+ @ Context int context , // $InjectionAnnotation
149+ int paramWithoutAnnotation ) {
131150 }
132151}
133152
0 commit comments