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

Add validUntil to MediatedRefresh2021. #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
13 changes: 9 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -363,9 +363,10 @@ <h2>MediatedRefresh2021 Protocol</h2>

<ol>
<li>
The <a>holder</a> software extracts the `refreshService.type`,
`refreshService.url`, and `refreshService.validAfter` properties and saves
them as <em>type</em>, <em>url</em>, and <em>validAfter</em>, respectively.
The <a>holder</a> software extracts the `refreshService.type`,
`refreshService.url`, `refreshService.validAfter`, and
`refreshService.validUntil` properties and saves
them as <em>type</em>, <em>url</em>, <em>validAfter</em>, and <em>validUntil</em>, respectively.
</li>
<li>
If <em>type</em> does not equal `MediatedRefresh2021`,
Expand All @@ -376,6 +377,10 @@ <h2>MediatedRefresh2021 Protocol</h2>
than the current datetime, raise a `REFRESH_NOT_ALLOWED` exception.
</li>
<li>
If <em>validUntil</em> is defined, but expresses a datetime that is before
the current datetime, raise a `REFRESH_NOT_ALLOWED` exception.
</li>
<li>
If <em>url</em> is not defined, raise an `INVALID_URL` exception.
</li>
<li>
Expand Down Expand Up @@ -411,7 +416,7 @@ <h2>UnmediatedRefresh2021 Protocol</h2>

<ol>
<li>
The <a>holder</a> software extracts the `refreshService.type`,
The <a>holder</a> software extracts the `refreshService.type`,
`refreshService.url`, `refreshService.validAfter`, and
`refreshService.validUntil` properties and saves them as <em>type</em>,
<em>url</em>, <em>validAfter</em>, and <em>validUntil</em>, respectively.
Expand Down