Use possessive pronoun rather contraction
Signed-off-by: Pat McCusker <patmccusker14@gmail.com>
This commit is contained in:
committed by
Josh Cummings
parent
bfce6e438d
commit
2bd3cadde8
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -44,7 +44,7 @@ package org.springframework.security.oauth2.jwt;
|
||||
public interface JwtDecoder {
|
||||
|
||||
/**
|
||||
* Decodes the JWT from it's compact claims representation format and returns a
|
||||
* Decodes the JWT from its compact claims representation format and returns a
|
||||
* {@link Jwt}.
|
||||
* @param token the JWT value
|
||||
* @return a {@link Jwt}
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
* Copyright 2002-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -18,7 +18,7 @@ package org.springframework.security.oauth2.jwt;
|
||||
|
||||
/**
|
||||
* Implementations of this interface are responsible for encoding a JSON Web Token (JWT)
|
||||
* to it's compact claims representation format.
|
||||
* to its compact claims representation format.
|
||||
*
|
||||
* <p>
|
||||
* JWTs may be represented using the JWS Compact Serialization format for a JSON Web
|
||||
@@ -47,7 +47,7 @@ package org.springframework.security.oauth2.jwt;
|
||||
public interface JwtEncoder {
|
||||
|
||||
/**
|
||||
* Encode the JWT to it's compact claims representation format.
|
||||
* Encode the JWT to its compact claims representation format.
|
||||
* @param parameters the parameters containing the JOSE header and JWT Claims Set
|
||||
* @return a {@link Jwt}
|
||||
* @throws JwtEncodingException if an error occurs while attempting to encode the JWT
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
* Copyright 2002-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -70,7 +70,7 @@ import org.springframework.web.reactive.function.client.WebClient;
|
||||
|
||||
/**
|
||||
* An implementation of a {@link ReactiveJwtDecoder} that "decodes" a JSON Web
|
||||
* Token (JWT) and additionally verifies it's digital signature if the JWT is a JSON Web
|
||||
* Token (JWT) and additionally verifies its digital signature if the JWT is a JSON Web
|
||||
* Signature (JWS).
|
||||
*
|
||||
* <p>
|
||||
|
||||
+3
-3
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2025 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -20,7 +20,7 @@ import reactor.core.publisher.Mono;
|
||||
|
||||
/**
|
||||
* Implementations of this interface are responsible for "decoding" a JSON Web
|
||||
* Token (JWT) from it's compact claims representation format to a {@link Jwt}.
|
||||
* Token (JWT) from its compact claims representation format to a {@link Jwt}.
|
||||
*
|
||||
* <p>
|
||||
* JWTs may be represented using the JWS Compact Serialization format for a JSON Web
|
||||
@@ -46,7 +46,7 @@ import reactor.core.publisher.Mono;
|
||||
public interface ReactiveJwtDecoder {
|
||||
|
||||
/**
|
||||
* Decodes the JWT from it's compact claims representation format and returns a
|
||||
* Decodes the JWT from its compact claims representation format and returns a
|
||||
* {@link Jwt}.
|
||||
* @param token the JWT value
|
||||
* @return a {@link Jwt}
|
||||
|
||||
Reference in New Issue
Block a user