-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adding scopes in config-api endpoint access token based on tags…
- Loading branch information
Showing
5 changed files
with
59 additions
and
174 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
24 changes: 24 additions & 0 deletions
24
...s/admin-ui-plugin/src/main/java/io/jans/ca/plugin/adminui/model/auth/ApiTokenRequest.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package io.jans.ca.plugin.adminui.model.auth; | ||
|
||
import java.util.List; | ||
|
||
public class ApiTokenRequest { | ||
private List<String> permissionTag; | ||
private String ujwt; | ||
|
||
public List<String> getPermissionTag() { | ||
return permissionTag; | ||
} | ||
|
||
public void setPermissionTag(List<String> permissionTag) { | ||
this.permissionTag = permissionTag; | ||
} | ||
|
||
public String getUjwt() { | ||
return ujwt; | ||
} | ||
|
||
public void setUjwt(String ujwt) { | ||
this.ujwt = ujwt; | ||
} | ||
} |
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