Skip to content

Commit 4d53f21

Browse files
committed
Fix RBAC capitalization, minor typos JWT & OIDC
- Updated README.adoc - Updated Specs background - Updated Javadocs package-info Signed-off-by: Emerson Castaneda <[email protected]>
1 parent ce7071b commit 4d53f21

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121

2222
## Introduction
2323

24-
Today, the most common solutions involving RESTful and microservices security are based on http://openid.net/connect/[OpenID Connect(OIDC)], https://tools.ietf.org/html/rfc6749[OAuth2] and https://tools.ietf.org/html/rfc7519[JSON Web Token (JWT)] standards.
24+
Today, the most common solutions involving RESTful and microservices security are based on http://openid.net/connect/[OpenID Connect (OIDC)], https://tools.ietf.org/html/rfc6749[OAuth2] and https://tools.ietf.org/html/rfc7519[JSON Web Token (JWT)] standards.
2525

26-
This specification outlines how the signed JWT tokens issued by OIDC and other trusted providers can be verified and their claims used for role based access control(RBAC) of microservice endpoints.
26+
This specification outlines how the signed JWT tokens issued by OIDC and other trusted providers can be verified and their claims used for Role Based Access Control (RBAC) of microservice endpoints.
2727

2828
## Motivation
2929

api/src/main/java/org/eclipse/microprofile/jwt/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
* <p>Interoperable JWT RBAC for Microprofile
2323
*
2424
* <h2>Overview</h2>
25-
* This package contains the primary interfaces and support classes for the JSON Web Tokens(JWT) for role based
26-
* access control(RBAC) of MicroProfile microservice endpoints. The primary class is the JsonWebToken interface
25+
* This package contains the primary interfaces and support classes for the JSON Web Tokens (JWT) for Role Based
26+
* Access Control (RBAC) of MicroProfile microservice endpoints. The primary class is the JsonWebToken interface
2727
* that defines the view of the current authenticated user and associated JWT claims. It is available for injection
2828
* as well as the user principal available from the container security API.
2929
*

spec/src/main/asciidoc/background.asciidoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
//
1717

1818
## Introduction
19-
This specification outlines a proposal for using http://openid.net/connect/[OpenID Connect(OIDC)] based
20-
https://tools.ietf.org/html/rfc7519[JSON Web Tokens(JWT)] for role based access control(RBAC) of microservice endpoints.
19+
This specification outlines a proposal for using http://openid.net/connect/[OpenID Connect (OIDC)] based
20+
https://tools.ietf.org/html/rfc7519[JSON Web Tokens (JWT)] for Role Based Access Control (RBAC) of microservice endpoints.
2121

2222

2323
## Motivation
@@ -52,8 +52,8 @@ any information within a security token
5252
* Support for both delegation and impersonation of identities
5353
5454
Today, the most common solutions involving RESTful and microservices security are based on https://tools.ietf.org/html/rfc6749[OAuth2],
55-
http://openid.net/connect/[OpenID Connect(OIDC)] and
56-
https://tools.ietf.org/html/rfc7519[JSON Web Tokens(JWT)] standards.
55+
http://openid.net/connect/[OpenID Connect (OIDC)] and
56+
https://tools.ietf.org/html/rfc7519[JSON Web Tokens (JWT)] standards.
5757

5858
### Token Based Authentication
5959
Token Based Authentication mechanisms allow systems to authenticate, authorize and verify identities based on a security token. Usually, the following entities are involved:

0 commit comments

Comments
 (0)