This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into aruha-961-check-res…
…et-cursors # Conflicts: # CHANGELOG.md # src/main/java/org/zalando/nakadi/service/CursorsService.java
- Loading branch information
Showing
22 changed files
with
30 additions
and
268 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ info: | |
Other aspects of the Event Bus are at this moment to be defined and otherwise specified, not included | ||
in this version of this specification. | ||
version: '0.8.0' | ||
version: '0.9.0' | ||
contact: | ||
name: Team Aruha @ Zalando | ||
email: [email protected] | ||
|
@@ -2262,28 +2262,6 @@ definitions: | |
authorization: | ||
$ref: '#/definitions/EventTypeAuthorization' | ||
|
||
write_scopes: | ||
type: array | ||
items: | ||
type: string | ||
description: | | ||
This field is used for event publishing access control. Nakadi only authorises publishers whose session | ||
contains at least one of the scopes in this list. | ||
If no scopes provided then anyone can publish to this event type. | ||
Usage of write_scopes is deprecated. | ||
read_scopes: | ||
type: array | ||
items: | ||
type: string | ||
description: | | ||
This field is used for event consuming access control. Nakadi only authorises consumers whose session | ||
contains at least one of the scopes in this list. | ||
If no scopes provided then anyone can consume from this event type. | ||
Usage of read_scopes is deprecated. | ||
created_at: | ||
type: string | ||
pattern: date-time | ||
|
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
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
18 changes: 0 additions & 18 deletions
18
src/main/java/org/zalando/nakadi/exceptions/IllegalScopeException.java
This file was deleted.
Oops, something went wrong.
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: 0 additions & 8 deletions
8
src/main/java/org/zalando/nakadi/security/FullAccessClient.java
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,17 +1,9 @@ | ||
package org.zalando.nakadi.security; | ||
|
||
import org.zalando.nakadi.exceptions.IllegalScopeException; | ||
|
||
import java.util.Set; | ||
|
||
public class FullAccessClient extends Client { | ||
|
||
public FullAccessClient(final String clientId) { | ||
super(clientId); | ||
} | ||
|
||
@Override | ||
public void checkScopes(final Set<String> allowedScopes) throws IllegalScopeException { | ||
|
||
} | ||
} |
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
Oops, something went wrong.