Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Consistently rename all files to recommended .adoc #153

Merged
merged 1 commit into from
Nov 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ A Jakarta EE container MUST support built-in beans for the following _HttpAuthen

All of these beans MUST have the qualifier @Default and the scope @ApplicationScoped, as defined by the CDI specification.

All of the built-in beans MUST support authentication using _IdentityStore_, described in Chapter 3, "<<identityStore.asciidoc#identity-store,Identity Store>>", but MAY fall-back to container-specific methods if no _IdentityStore_ is available.
All of the built-in beans MUST support authentication using _IdentityStore_, described in Chapter 3, "<<identityStore.adoc#identity-store,Identity Store>>", but MAY fall-back to container-specific methods if no _IdentityStore_ is available.

See also the "<<Implementation Notes>>" section of this chapter.

Expand Down Expand Up @@ -301,7 +301,7 @@ Intercepting _cleanSubject()_::
** Remove the cookie.
** Call the _removeLoginToken()_ method of the _RememberMeIdentityStore_.

See also the description of _RememberMeIdentityStore_ in Chapter 3, "<<identityStore.asciidoc#identity-store,Identity Store>>".
See also the description of _RememberMeIdentityStore_ in Chapter 3, "<<identityStore.adoc#identity-store,Identity Store>>".

==== AutoApplySession Annotation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public interface RememberMeIdentityStore {

_RememberMeIdentityStore_ can only be used when an application includes an _HttpAuthenticationMechanism_ or configures one of the built-in ones. The application must specify the _RememberMe_ annotation on the _HttpAuthenticationMechanism_ to configure the _RememberMeIdentityStore_.

See the description of the _RememberMe_ annotation in Chapter 2, "<<authenticationMechanism.asciidoc#authentication-mechanism,Authentication Mechanism>>".
See the description of the _RememberMe_ annotation in Chapter 2, "<<authenticationMechanism.adoc#authentication-mechanism,Authentication Mechanism>>".

=== Installation and Configuration

Expand Down
14 changes: 7 additions & 7 deletions spec/src/main/asciidoc/security-spec.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ endif::[]
:sectnums!:
include::license-efsl.adoc[]

// == Scope
// == Toc
:sectnums:

include::preface.asciidoc[]
include::preface.adoc[]

include::concepts.asciidoc[]
include::concepts.adoc[]

include::authenticationMechanism.asciidoc[]
include::authenticationMechanism.adoc[]

include::identityStore.asciidoc[]
include::identityStore.adoc[]

include::securityContext.asciidoc[]
include::securityContext.adoc[]

include::bibliography.asciidoc[]
include::bibliography.adoc[]

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The _getPrincipalsByType()_ method retrieves all principals of the given type. T

Where both a container caller principal and an application caller principal are present, the value returned by _getName()_ MUST be the same for both principals.

See the Chapter 1, "<<concepts.asciidoc#concepts,Concepts>>", for more information on principal handling.
See the Chapter 1, "<<concepts.adoc#concepts,Concepts>>", for more information on principal handling.

The _isCallerInRole()_ method takes a String argument that represents the role that is to be tested for. It is undefined by this specification how the role determination is made, but the result MUST be the same as if the corresponding container-specific call had been made (i.e., _HttpServletRequest.isUserInRole()_, _EJBContext.isCallerInRole()_), and MUST be consistent with the result implied by other specifications that prescribe role-mapping behavior.

Expand Down