Skip to content

Commit 392cb2c

Browse files
pzygielomkarg
authored andcommitted
Replace "it's" with "its"
1 parent 9dd5719 commit 392cb2c

22 files changed

+104
-104
lines changed

jaxrs-api/src/main/java/jakarta/ws/rs/BeanParam.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* The annotation that may be used to inject custom JAX-RS "parameter aggregator" value object into a resource class
2727
* field, property or resource method parameter.
2828
* <p>
29-
* The JAX-RS runtime will instantiate the object and inject all it's fields and properties annotated with either one of
29+
* The JAX-RS runtime will instantiate the object and inject all its fields and properties annotated with either one of
3030
* the {@code @XxxParam} annotation ({@link PathParam &#64;PathParam}, {@link FormParam &#64;FormParam} ...) or the
3131
* {@link jakarta.ws.rs.core.Context &#64;Context} annotation. For the POJO classes same instantiation and injection rules
3232
* apply as in case of instantiation and injection of request-scoped root resource classes.

jaxrs-api/src/main/java/jakarta/ws/rs/ProcessingException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* <p>
3434
* Note that the exception is used to indicate (internal) JAX-RS processing errors. It is not used to indicate HTTP
3535
* error response states. A HTTP error response is represented by a {@link jakarta.ws.rs.WebApplicationException} class or
36-
* one of it's sub-classes.
36+
* one of its sub-classes.
3737
* </p>
3838
*
3939
* @author Marek Potociar

jaxrs-api/src/main/java/jakarta/ws/rs/client/AsyncInvoker.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public interface AsyncInvoker {
107107
* processing exception will be of {@link ResponseProcessingException} type and will contain the {@link Response}
108108
* instance whose processing has failed.
109109
*
110-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
110+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
111111
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
112112
* be overwritten using the entity variant information.
113113
* @return invocation response {@link Future future}.
@@ -126,7 +126,7 @@ public interface AsyncInvoker {
126126
* type and will contain the {@link Response} instance whose processing has failed.
127127
*
128128
* @param <T> response entity type.
129-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
129+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130130
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
131131
* be overwritten using the entity variant information.
132132
* @param responseType Java type the response entity will be converted to.
@@ -146,7 +146,7 @@ public interface AsyncInvoker {
146146
* type and will contain the {@link Response} instance whose processing has failed.
147147
*
148148
* @param <T> generic response entity type.
149-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
149+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
150150
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
151151
* be overwritten using the entity variant information.
152152
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -166,7 +166,7 @@ public interface AsyncInvoker {
166166
* {@link ResponseProcessingException} type and will contain the {@link Response} instance whose processing has failed.
167167
*
168168
* @param <T> generic response entity type.
169-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
169+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
170170
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
171171
* be overwritten using the entity variant information.
172172
* @param callback asynchronous invocation callback.
@@ -185,7 +185,7 @@ public interface AsyncInvoker {
185185
* processing exception will be of {@link ResponseProcessingException} type and will contain the {@link Response}
186186
* instance whose processing has failed.
187187
*
188-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
188+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
189189
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
190190
* be overwritten using the entity variant information.
191191
* @return invocation response {@link Future future}.
@@ -205,7 +205,7 @@ public interface AsyncInvoker {
205205
* type and will contain the {@link Response} instance whose processing has failed.
206206
*
207207
* @param <T> response entity type.
208-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
208+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
209209
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
210210
* be overwritten using the entity variant information.
211211
* @param responseType Java type the response entity will be converted to.
@@ -225,7 +225,7 @@ public interface AsyncInvoker {
225225
* type and will contain the {@link Response} instance whose processing has failed.
226226
*
227227
* @param <T> generic response entity type.
228-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
228+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
229229
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
230230
* be overwritten using the entity variant information.
231231
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -245,7 +245,7 @@ public interface AsyncInvoker {
245245
* {@link ResponseProcessingException} type and will contain the {@link Response} instance whose processing has failed.
246246
*
247247
* @param <T> generic response entity type.
248-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
248+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
249249
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
250250
* be overwritten using the entity variant information.
251251
* @param callback asynchronous invocation callback.
@@ -560,7 +560,7 @@ public interface AsyncInvoker {
560560
* instance whose processing has failed.
561561
*
562562
* @param name method name.
563-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
563+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
564564
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
565565
* be overwritten using the entity variant information.
566566
* @return invocation response {@link Future future}.
@@ -580,7 +580,7 @@ public interface AsyncInvoker {
580580
*
581581
* @param <T> response entity type.
582582
* @param name method name.
583-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
583+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
584584
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
585585
* be overwritten using the entity variant information.
586586
* @param responseType Java type the response entity will be converted to.
@@ -601,7 +601,7 @@ public interface AsyncInvoker {
601601
*
602602
* @param <T> generic response entity type.
603603
* @param name method name.
604-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
604+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
605605
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
606606
* be overwritten using the entity variant information.
607607
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -622,7 +622,7 @@ public interface AsyncInvoker {
622622
*
623623
* @param <T> generic response entity type.
624624
* @param name method name.
625-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
625+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
626626
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
627627
* be overwritten using the entity variant information.
628628
* @param callback asynchronous invocation callback.

jaxrs-api/src/main/java/jakarta/ws/rs/client/Client.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public interface Client extends Configurable<Client>, AutoCloseable {
4343

4444
/**
4545
* <p>
46-
* Close client instance and all it's associated resources. Subsequent calls have no effect and are ignored. Once the
46+
* Close client instance and all its associated resources. Subsequent calls have no effect and are ignored. Once the
4747
* client is closed, invoking any other method on the client instance would result in an {@link IllegalStateException}
4848
* being thrown.
4949
* </p>

jaxrs-api/src/main/java/jakarta/ws/rs/client/ClientBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ public ClientBuilder keyStore(final KeyStore keyStore, final String password) {
194194
public abstract ClientBuilder trustStore(final KeyStore trustStore);
195195

196196
/**
197-
* Set the hostname verifier to be used by the client to verify the endpoint's hostname against it's identification
197+
* Set the hostname verifier to be used by the client to verify the endpoint's hostname against its identification
198198
* information.
199199
*
200200
* @param verifier hostname verifier.

jaxrs-api/src/main/java/jakarta/ws/rs/client/Invocation.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public static interface Builder extends SyncInvoker {
102102
* Build a request invocation using an arbitrary request method name and request entity.
103103
*
104104
* @param method request method name.
105-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
105+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
106106
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
107107
* be overwritten using the entity variant information.
108108
* @return invocation encapsulating the built request.
@@ -126,7 +126,7 @@ public static interface Builder extends SyncInvoker {
126126
/**
127127
* Build a POST request invocation.
128128
*
129-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
129+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130130
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
131131
* be overwritten using the entity variant information.
132132
* @return invocation encapsulating the built POST request.
@@ -136,7 +136,7 @@ public static interface Builder extends SyncInvoker {
136136
/**
137137
* Build a PUT request invocation.
138138
*
139-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
139+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
140140
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
141141
* be overwritten using the entity variant information.
142142
* @return invocation encapsulating the built PUT request.

jaxrs-api/src/main/java/jakarta/ws/rs/client/RxInvoker.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public interface RxInvoker<T> {
7474
/**
7575
* Invoke HTTP PUT method for the current request.
7676
*
77-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
77+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
7878
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
7979
* be overwritten using the entity variant information.
8080
* @return invocation response wrapped in the completion aware type.
@@ -87,7 +87,7 @@ public interface RxInvoker<T> {
8787
/**
8888
* Invoke HTTP PUT method for the current request.
8989
*
90-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
90+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
9191
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
9292
* be overwritten using the entity variant information.
9393
* @param responseType Java type the response entity will be converted to.
@@ -105,7 +105,7 @@ public interface RxInvoker<T> {
105105
/**
106106
* Invoke HTTP PUT method for the current request.
107107
*
108-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
108+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
109109
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
110110
* be overwritten using the entity variant information.
111111
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -123,7 +123,7 @@ public interface RxInvoker<T> {
123123
/**
124124
* Invoke HTTP POST method for the current request.
125125
*
126-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
126+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
127127
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
128128
* be overwritten using the entity variant information.
129129
* @return invocation response wrapped in the completion aware type.
@@ -136,7 +136,7 @@ public interface RxInvoker<T> {
136136
/**
137137
* Invoke HTTP POST method for the current request.
138138
*
139-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
139+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
140140
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
141141
* be overwritten using the entity variant information.
142142
* @param responseType Java type the response entity will be converted to.
@@ -154,7 +154,7 @@ public interface RxInvoker<T> {
154154
/**
155155
* Invoke HTTP POST method for the current request.
156156
*
157-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
157+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
158158
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
159159
* be overwritten using the entity variant information.
160160
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -346,7 +346,7 @@ public interface RxInvoker<T> {
346346
* Invoke an arbitrary method for the current request.
347347
*
348348
* @param name method name.
349-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
349+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
350350
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
351351
* be overwritten using the entity variant information.
352352
* @return invocation response wrapped in the completion aware type..
@@ -360,7 +360,7 @@ public interface RxInvoker<T> {
360360
* Invoke an arbitrary method for the current request.
361361
*
362362
* @param name method name.
363-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
363+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
364364
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
365365
* be overwritten using the entity variant information.
366366
* @param responseType Java type the response entity will be converted to.
@@ -379,7 +379,7 @@ public interface RxInvoker<T> {
379379
* Invoke an arbitrary method for the current request.
380380
*
381381
* @param name method name.
382-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
382+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
383383
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
384384
* be overwritten using the entity variant information.
385385
* @param responseType representation of a generic Java type the response entity will be converted to.

0 commit comments

Comments
 (0)