-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AccessFactory: Switch from RMLP to IDSA external vocabulary
Use external vocabularies to describe authentication data
- Loading branch information
1 parent
437ef96
commit a88b6a4
Showing
6 changed files
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/test/resources/web-of-things/essence/private-security-data.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
@prefix rmlp: <http://semweb.mmlab.be/ns/rmlp#> . | ||
@prefix idsa: <https://w3id.org/idsa/core/> . | ||
@base <http://example.com/rules/> . | ||
|
||
# API key in HTTP header | ||
<#WotWebAPISecurity> a rmlp:APISecuritydata; | ||
rmlp:token "123456789"; | ||
. | ||
<#WotWebAPISecurity> a idsa:Token; | ||
idsa:tokenValue "123456789"; | ||
. |
8 changes: 4 additions & 4 deletions
8
src/test/resources/web-of-things/logical-target/private-security-data.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
@prefix rmlp: <http://semweb.mmlab.be/ns/rmlp#> . | ||
@prefix idsa: <https://w3id.org/idsa/core/> . | ||
@base <http://example.com/rules/> . | ||
|
||
# API key in HTTP header | ||
<#WotWebAPISecurity> a rmlp:APISecuritydata; | ||
rmlp:token "123456789"; | ||
. | ||
<#WotWebAPISecurity> a idsa:Token; | ||
idsa:tokenValue "123456789"; | ||
. |
8 changes: 4 additions & 4 deletions
8
src/test/resources/web-of-things/serialization/private-security-data.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
@prefix rmlp: <http://semweb.mmlab.be/ns/rmlp#> . | ||
@prefix idsa: <https://w3id.org/idsa/core/> . | ||
@base <http://example.com/rules/> . | ||
|
||
# API key in HTTP header | ||
<#WotWebAPISecurity> a rmlp:APISecuritydata; | ||
rmlp:token "123456789"; | ||
. | ||
<#WotWebAPISecurity> a idsa:Token; | ||
idsa:tokenValue "123456789"; | ||
. |