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

docs: cross references #130

Merged
merged 1 commit into from
Jan 9, 2025
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
2 changes: 2 additions & 0 deletions docs/src/modules/java/pages/access-control.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ specify lists of what can access your services, at multiple granularity. For exa
initiates a payment on a payment service to only accept requests from the shopping cart service. You can also control
whether services or methods can be invoked from the Internet.

For a conceptual introduction, see xref:security:acls.adoc[] in the **Security** section.

== Principals

A principal in Akka is an abstract concept that represents anything that can make or be the source of a request.
Expand Down
4 changes: 4 additions & 0 deletions docs/src/modules/java/pages/event-sourced-entities.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,7 @@ curl localhost:9000/akka/v1.0/entity/carts/12345/addItem \
-XPOST \
--data '{"productId":"akka-tshirt","name":"Akka Tshirt","quantity":10}'
----

== See also

- xref:java:key-value-entities.adoc[]
5 changes: 5 additions & 0 deletions docs/src/modules/java/pages/http-endpoints.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,8 @@ include::example$doc-snippets/src/main/java/com/example/api/ExampleEndpoint.java
<1> Accept the materializer and keep it in a field
<2> Make sure to discard the request body when failing
<3> Or collect the bytes into memory

== See also

- xref:java:access-control.adoc[]
- xref:security:tls-certificates.adoc[]
2 changes: 1 addition & 1 deletion docs/src/modules/security/pages/acls.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Access Control Lists (ACLs)
= Access Control List concepts

include::ROOT:partial$include.adoc[]

Expand Down
Loading