| Package | Description |
|---|---|
| cn.vertxup.rbac.domain.tables.daos | |
| cn.vertxup.rbac.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
OUser |
OUserDao.fetchOneByClientId(String value)
Fetch a unique record that has
CLIENT_ID = value |
OUser |
OUserDao.fetchOneByClientSecret(String value)
Fetch a unique record that has
CLIENT_SECRET = value |
OUser |
OUserDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<OUser> |
OUserDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByClientId(String... values)
Fetch records that have
CLIENT_ID IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByClientIdAsync(List<String> values)
Fetch records that have
CLIENT_ID IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByClientSecret(String... values)
Fetch records that have
CLIENT_SECRET IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByClientSecretAsync(List<String> values)
Fetch records that have
CLIENT_SECRET IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByGrantType(String... values)
Fetch records that have
GRANT_TYPE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByGrantTypeAsync(List<String> values)
Fetch records that have
GRANT_TYPE IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByRedirectUri(String... values)
Fetch records that have
REDIRECT_URI IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByRedirectUriAsync(List<String> values)
Fetch records that have
REDIRECT_URI IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByScope(String... values)
Fetch records that have
SCOPE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByScopeAsync(List<String> values)
Fetch records that have
SCOPE IN (values) asynchronously |
List<OUser> |
OUserDao.fetchByState(String... values)
Fetch records that have
STATE IN (values) |
CompletableFuture<List<OUser>> |
OUserDao.fetchByStateAsync(List<String> values)
Fetch records that have
STATE IN (values) asynchronously |
CompletableFuture<OUser> |
OUserDao.fetchOneByClientIdAsync(String value)
Fetch a unique record that has
CLIENT_ID = value asynchronously |
CompletableFuture<OUser> |
OUserDao.fetchOneByClientSecretAsync(String value)
Fetch a unique record that has
CLIENT_SECRET = value asynchronously |
CompletableFuture<OUser> |
OUserDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
OUserDao.getId(OUser object) |
| Modifier and Type | Method and Description |
|---|---|
OUser |
OUser.setActive(Boolean active) |
OUser |
OUser.setClientId(String clientId) |
OUser |
OUser.setClientSecret(String clientSecret) |
OUser |
OUser.setCode(String code) |
OUser |
OUser.setGrantType(String grantType) |
OUser |
OUser.setKey(String key) |
OUser |
OUser.setLanguage(String language) |
OUser |
OUser.setMetadata(String metadata) |
OUser |
OUser.setRedirectUri(String redirectUri) |
OUser |
OUser.setScope(String scope) |
OUser |
OUser.setState(String state) |
| Constructor and Description |
|---|
OUser(OUser value) |
Copyright © 2021. All rights reserved.