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

update readme #155

Merged
merged 1 commit into from
Aug 26, 2024
Merged
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
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,22 @@ create obligation "sample_obligation" {
""";
```

A user is required to execute PML. This user will be the defined author of any obligations created.
A user is required to execute PML and will only be used to define author of any obligations created. This user is the user
the obligation response will be executed on behalf of.
```java
// execute the pml and apply to existing policy
pap.executePML(new UserContext("u1")), pml);

// or

// reset the current policy befire applying the PML
pap.deserialize(new UserContext("u1"), pml, new PMLDeserializer())
pap.deserialize(new UserContext("u1"), pml, new PMLDeserializer());
```

#### Query access

```java
AccessRightSet privileges = pap.query().access().computePrivileges(new UserContext("u1"), "o1");
```

### PDP Usage
Expand Down
Loading