Skip to content

Commit

Permalink
docs: Qualify auth endpoint property values (eclipse-edc#4011)
Browse files Browse the repository at this point in the history
Fully qualify extension values
  • Loading branch information
jimmarino authored Mar 15, 2024
1 parent dcac6d3 commit 39089d1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ backward compatibility to the existing format should be maintained by retaining
"dspace:endpointProperties": [
{
"@type": "dspace:EndpointProperty",
"dspace:name": "authorization",
"dspace:name": "https://w3id.org/edc/v0.0.1/ns/authorization",
"dspace:value": "token"
},
{
"@type": "dspace:EndpointProperty",
"dspace:name": "authType",
"dspace:name": "https://w3id.org/edc/v0.0.1/ns/authType",
"dspace:value": "bearer"
}
]
}
}
```

Support for the optional DSP `authType` property will be added. If present, its value must be `bearer,` which indicates
Support for the optional DSP `https://w3id.org/edc/v0.0.1/ns/authType` property will be added. If present, its value must be `bearer,` which indicates
clients must present the contained token as a bearer token to the associated HTTP endpoint.

_Note that all endpoints must be represented as URI-style strings._
Expand Down Expand Up @@ -185,7 +185,7 @@ to `DataPlaneAccessControlService.checkAccess`:

```java
public interface DataPlaneAccessControlService {
boolean checkAccess(ClaimToken claimToken, DataAddress address, Map<String, Object> requestData)
boolean checkAccess(ClaimToken claimToken, DataAddress address, Map<String, Object> requestData);
}
```

Expand Down

0 comments on commit 39089d1

Please sign in to comment.