| Package | Description |
|---|---|
| cn.vertxup.domain.tables.daos | |
| cn.vertxup.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
SAction |
SActionDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
SAction |
SActionDao.fetchOneByResourceId(String value)
Fetch a unique record that has
RESOURCE_ID = value |
| Modifier and Type | Method and Description |
|---|---|
List<SAction> |
SActionDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByLevel(Integer... values)
Fetch records that have
LEVEL IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByLevelAsync(List<Integer> values)
Fetch records that have
LEVEL IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByMethod(String... values)
Fetch records that have
METHOD IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByMethodAsync(List<String> values)
Fetch records that have
METHOD IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByPermissionId(String... values)
Fetch records that have
PERMISSION_ID IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByPermissionIdAsync(List<String> values)
Fetch records that have
PERMISSION_ID IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByResourceId(String... values)
Fetch records that have
RESOURCE_ID IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByResourceIdAsync(List<String> values)
Fetch records that have
RESOURCE_ID IN (values) asynchronously |
List<SAction> |
SActionDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<SAction> |
SActionDao.fetchByUri(String... values)
Fetch records that have
URI IN (values) |
CompletableFuture<List<SAction>> |
SActionDao.fetchByUriAsync(List<String> values)
Fetch records that have
URI IN (values) asynchronously |
CompletableFuture<SAction> |
SActionDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
CompletableFuture<SAction> |
SActionDao.fetchOneByResourceIdAsync(String value)
Fetch a unique record that has
RESOURCE_ID = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SActionDao.getId(SAction object) |
| Modifier and Type | Method and Description |
|---|---|
SAction |
SAction.setActive(Boolean active) |
SAction |
SAction.setCode(String code) |
SAction |
SAction.setCreatedAt(LocalDateTime createdAt) |
SAction |
SAction.setCreatedBy(String createdBy) |
SAction |
SAction.setKey(String key) |
SAction |
SAction.setLanguage(String language) |
SAction |
SAction.setLevel(Integer level) |
SAction |
SAction.setMetadata(String metadata) |
SAction |
SAction.setMethod(String method) |
SAction |
SAction.setName(String name) |
SAction |
SAction.setPermissionId(String permissionId) |
SAction |
SAction.setResourceId(String resourceId) |
SAction |
SAction.setSigma(String sigma) |
SAction |
SAction.setUpdatedAt(LocalDateTime updatedAt) |
SAction |
SAction.setUpdatedBy(String updatedBy) |
SAction |
SAction.setUri(String uri) |
| Constructor and Description |
|---|
SAction(SAction value) |
Copyright © 2019. All rights reserved.