Skip to content

Commit e824977

Browse files
committed
Replace "it's" with "its"
1 parent 9dd5719 commit e824977

22 files changed

+125
-104
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -26,7 +27,7 @@
2627
* The annotation that may be used to inject custom JAX-RS "parameter aggregator" value object into a resource class
2728
* field, property or resource method parameter.
2829
* <p>
29-
* The JAX-RS runtime will instantiate the object and inject all it's fields and properties annotated with either one of
30+
* The JAX-RS runtime will instantiate the object and inject all its fields and properties annotated with either one of
3031
* the {@code @XxxParam} annotation ({@link PathParam &#64;PathParam}, {@link FormParam &#64;FormParam} ...) or the
3132
* {@link jakarta.ws.rs.core.Context &#64;Context} annotation. For the POJO classes same instantiation and injection rules
3233
* 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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -33,7 +34,7 @@
3334
* <p>
3435
* Note that the exception is used to indicate (internal) JAX-RS processing errors. It is not used to indicate HTTP
3536
* 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.
37+
* one of its sub-classes.
3738
* </p>
3839
*
3940
* @author Marek Potociar

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

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -107,7 +108,7 @@ public interface AsyncInvoker {
107108
* processing exception will be of {@link ResponseProcessingException} type and will contain the {@link Response}
108109
* instance whose processing has failed.
109110
*
110-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
111+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
111112
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
112113
* be overwritten using the entity variant information.
113114
* @return invocation response {@link Future future}.
@@ -126,7 +127,7 @@ public interface AsyncInvoker {
126127
* type and will contain the {@link Response} instance whose processing has failed.
127128
*
128129
* @param <T> response entity type.
129-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130131
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
131132
* be overwritten using the entity variant information.
132133
* @param responseType Java type the response entity will be converted to.
@@ -146,7 +147,7 @@ public interface AsyncInvoker {
146147
* type and will contain the {@link Response} instance whose processing has failed.
147148
*
148149
* @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
150+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
150151
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
151152
* be overwritten using the entity variant information.
152153
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -166,7 +167,7 @@ public interface AsyncInvoker {
166167
* {@link ResponseProcessingException} type and will contain the {@link Response} instance whose processing has failed.
167168
*
168169
* @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
170+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
170171
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
171172
* be overwritten using the entity variant information.
172173
* @param callback asynchronous invocation callback.
@@ -185,7 +186,7 @@ public interface AsyncInvoker {
185186
* processing exception will be of {@link ResponseProcessingException} type and will contain the {@link Response}
186187
* instance whose processing has failed.
187188
*
188-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
189+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
189190
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
190191
* be overwritten using the entity variant information.
191192
* @return invocation response {@link Future future}.
@@ -205,7 +206,7 @@ public interface AsyncInvoker {
205206
* type and will contain the {@link Response} instance whose processing has failed.
206207
*
207208
* @param <T> response entity type.
208-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
209+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
209210
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
210211
* be overwritten using the entity variant information.
211212
* @param responseType Java type the response entity will be converted to.
@@ -225,7 +226,7 @@ public interface AsyncInvoker {
225226
* type and will contain the {@link Response} instance whose processing has failed.
226227
*
227228
* @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
229+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
229230
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
230231
* be overwritten using the entity variant information.
231232
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -245,7 +246,7 @@ public interface AsyncInvoker {
245246
* {@link ResponseProcessingException} type and will contain the {@link Response} instance whose processing has failed.
246247
*
247248
* @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
249+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
249250
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
250251
* be overwritten using the entity variant information.
251252
* @param callback asynchronous invocation callback.
@@ -560,7 +561,7 @@ public interface AsyncInvoker {
560561
* instance whose processing has failed.
561562
*
562563
* @param name method name.
563-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
564+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
564565
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
565566
* be overwritten using the entity variant information.
566567
* @return invocation response {@link Future future}.
@@ -580,7 +581,7 @@ public interface AsyncInvoker {
580581
*
581582
* @param <T> response entity type.
582583
* @param name method name.
583-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
584+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
584585
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
585586
* be overwritten using the entity variant information.
586587
* @param responseType Java type the response entity will be converted to.
@@ -601,7 +602,7 @@ public interface AsyncInvoker {
601602
*
602603
* @param <T> generic response entity type.
603604
* @param name method name.
604-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
605+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
605606
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
606607
* be overwritten using the entity variant information.
607608
* @param responseType representation of a generic Java type the response entity will be converted to.
@@ -622,7 +623,7 @@ public interface AsyncInvoker {
622623
*
623624
* @param <T> generic response entity type.
624625
* @param name method name.
625-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
626+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
626627
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
627628
* be overwritten using the entity variant information.
628629
* @param callback asynchronous invocation callback.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -43,7 +44,7 @@ public interface Client extends Configurable<Client>, AutoCloseable {
4344

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

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -194,7 +195,7 @@ public ClientBuilder keyStore(final KeyStore keyStore, final String password) {
194195
public abstract ClientBuilder trustStore(final KeyStore trustStore);
195196

196197
/**
197-
* Set the hostname verifier to be used by the client to verify the endpoint's hostname against it's identification
198+
* Set the hostname verifier to be used by the client to verify the endpoint's hostname against its identification
198199
* information.
199200
*
200201
* @param verifier hostname verifier.

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/*
22
* Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved.
3+
* Copyright (c) 2025 Contributors to the Eclipse Foundation
34
*
45
* This program and the accompanying materials are made available under the
56
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -102,7 +103,7 @@ public static interface Builder extends SyncInvoker {
102103
* Build a request invocation using an arbitrary request method name and request entity.
103104
*
104105
* @param method request method name.
105-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
106+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
106107
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
107108
* be overwritten using the entity variant information.
108109
* @return invocation encapsulating the built request.
@@ -126,7 +127,7 @@ public static interface Builder extends SyncInvoker {
126127
/**
127128
* Build a POST request invocation.
128129
*
129-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
130131
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
131132
* be overwritten using the entity variant information.
132133
* @return invocation encapsulating the built POST request.
@@ -136,7 +137,7 @@ public static interface Builder extends SyncInvoker {
136137
/**
137138
* Build a PUT request invocation.
138139
*
139-
* @param entity request entity, including it's full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
140+
* @param entity request entity, including its full {@link jakarta.ws.rs.core.Variant} information. Any variant-related
140141
* HTTP headers previously set (namely {@code Content-Type}, {@code Content-Language} and {@code Content-Encoding}) will
141142
* be overwritten using the entity variant information.
142143
* @return invocation encapsulating the built PUT request.

0 commit comments

Comments
 (0)