Skip to content

Commit

Permalink
docs: cross references (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru authored Jan 9, 2025
1 parent c8b5cd4 commit b17a72d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
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

0 comments on commit b17a72d

Please sign in to comment.