| Modifier and Type | Method and Description |
|---|---|
Client |
ClientService.create(String name,
Scope scope,
List<String> redirectUris)
Creates a
Client |
| Modifier and Type | Method and Description |
|---|---|
Optional<Client> |
ClientService.getByClientId(String clientId)
Gets an existing
Client |
Optional<Client> |
ClientService.getById(String id)
Gets an existing
Client |
List<Client> |
ClientService.list()
Gets all Client
|
Optional<Client> |
ClientService.removeById(String id)
Deletes a
Client |
Optional<Client> |
ClientService.resetClientSecret(String clientId) |
Optional<Client> |
ClientService.updateClient(String id,
String name,
String scope,
List<String> redirectUris)
Updates an existing
Client |
| Modifier and Type | Class and Description |
|---|---|
class |
ClientEntity |
| Modifier and Type | Method and Description |
|---|---|
Client |
ClientDao.create(Client clientEntity) |
| Modifier and Type | Method and Description |
|---|---|
Optional<Client> |
ClientDao.getByClientId(String id) |
Optional<Client> |
ClientDao.getById(String id) |
List<Client> |
ClientDao.list() |
Optional<Client> |
ClientDao.removeById(String id) |
Optional<Client> |
ClientDao.resetClientSecret(String clientId,
String regeneratedClientSecret) |
Optional<Client> |
ClientDao.updateClient(String id,
String name,
String scope,
List<String> redirectUris) |
| Modifier and Type | Method and Description |
|---|---|
Client |
ClientDao.create(Client clientEntity) |
| Modifier and Type | Field and Description |
|---|---|
protected Client |
ClientConfigurationEvent.newClient |
protected Client |
ClientConfigurationEvent.oldClient |
| Constructor and Description |
|---|
ClientConfigurationCreatedEvent(Client newClient) |
ClientConfigurationDeletedEvent(Client oldClient) |
ClientConfigurationUpdatedEvent(Client oldClient,
Client newClient) |
| Modifier and Type | Method and Description |
|---|---|
Optional<Client> |
OAuth2ProviderService.findClient(String clientId)
Find the client using the clientId
|
List<Client> |
OAuth2ProviderService.listClients()
Gets all Clients
|
Copyright © 2020–2023 Atlassian. All rights reserved.