| Package | Description |
|---|---|
| cn.vertxup.rbac.domain.tables.daos | |
| cn.vertxup.rbac.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
SPermission |
SPermissionDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<SPermission> |
SPermissionDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByComment(String... values)
Fetch records that have
COMMENT IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByCommentAsync(List<String> values)
Fetch records that have
COMMENT IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByGroup(String... values)
Fetch records that have
GROUP IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByGroupAsync(List<String> values)
Fetch records that have
GROUP IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<SPermission> |
SPermissionDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<SPermission>> |
SPermissionDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<SPermission> |
SPermissionDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SPermissionDao.getId(SPermission object) |
| Modifier and Type | Method and Description |
|---|---|
SPermission |
SPermission.setActive(Boolean active) |
SPermission |
SPermission.setCode(String code) |
SPermission |
SPermission.setComment(String comment) |
SPermission |
SPermission.setCreatedAt(LocalDateTime createdAt) |
SPermission |
SPermission.setCreatedBy(String createdBy) |
SPermission |
SPermission.setGroup(String group) |
SPermission |
SPermission.setIdentifier(String identifier) |
SPermission |
SPermission.setKey(String key) |
SPermission |
SPermission.setLanguage(String language) |
SPermission |
SPermission.setMetadata(String metadata) |
SPermission |
SPermission.setName(String name) |
SPermission |
SPermission.setSigma(String sigma) |
SPermission |
SPermission.setUpdatedAt(LocalDateTime updatedAt) |
SPermission |
SPermission.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
SPermission(SPermission value) |
Copyright © 2020. All rights reserved.