| Package | Description |
|---|---|
| cn.vertxup.rbac.domain.tables.daos | |
| cn.vertxup.rbac.domain.tables.pojos | |
| cn.vertxup.rbac.service.view |
| Modifier and Type | Method and Description |
|---|---|
SView |
SViewDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<SView> |
SViewDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<SView> |
SViewDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<SView> |
SViewDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<SView> |
SViewDao.fetchByCriteria(String... values)
Fetch records that have
CRITERIA IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByCriteriaAsync(List<String> values)
Fetch records that have
CRITERIA IN (values) asynchronously |
List<SView> |
SViewDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<SView> |
SViewDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<SView> |
SViewDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<SView> |
SViewDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<SView> |
SViewDao.fetchByOwner(String... values)
Fetch records that have
OWNER IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByOwnerAsync(List<String> values)
Fetch records that have
OWNER IN (values) asynchronously |
List<SView> |
SViewDao.fetchByOwnerType(String... values)
Fetch records that have
OWNER_TYPE IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByOwnerTypeAsync(List<String> values)
Fetch records that have
OWNER_TYPE IN (values) asynchronously |
List<SView> |
SViewDao.fetchByPosition(String... values)
Fetch records that have
POSITION IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByPositionAsync(List<String> values)
Fetch records that have
POSITION IN (values) asynchronously |
List<SView> |
SViewDao.fetchByProjection(String... values)
Fetch records that have
PROJECTION IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByProjectionAsync(List<String> values)
Fetch records that have
PROJECTION IN (values) asynchronously |
List<SView> |
SViewDao.fetchByResourceId(String... values)
Fetch records that have
RESOURCE_ID IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByResourceIdAsync(List<String> values)
Fetch records that have
RESOURCE_ID IN (values) asynchronously |
List<SView> |
SViewDao.fetchByRows(String... values)
Fetch records that have
ROWS IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByRowsAsync(List<String> values)
Fetch records that have
ROWS IN (values) asynchronously |
List<SView> |
SViewDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<SView> |
SViewDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<SView> |
SViewDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<SView> |
SViewDao.fetchByVisitant(Boolean... values)
Fetch records that have
VISITANT IN (values) |
CompletableFuture<List<SView>> |
SViewDao.fetchByVisitantAsync(List<Boolean> values)
Fetch records that have
VISITANT IN (values) asynchronously |
CompletableFuture<SView> |
SViewDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SViewDao.getId(SView object) |
| Modifier and Type | Method and Description |
|---|---|
SView |
SView.setActive(Boolean active) |
SView |
SView.setCreatedAt(LocalDateTime createdAt) |
SView |
SView.setCreatedBy(String createdBy) |
SView |
SView.setCriteria(String criteria) |
SView |
SView.setKey(String key) |
SView |
SView.setLanguage(String language) |
SView |
SView.setMetadata(String metadata) |
SView |
SView.setName(String name) |
SView |
SView.setOwner(String owner) |
SView |
SView.setOwnerType(String ownerType) |
SView |
SView.setPosition(String position) |
SView |
SView.setProjection(String projection) |
SView |
SView.setResourceId(String resourceId) |
SView |
SView.setRows(String rows) |
SView |
SView.setSigma(String sigma) |
SView |
SView.setUpdatedAt(LocalDateTime updatedAt) |
SView |
SView.setUpdatedBy(String updatedBy) |
SView |
SView.setVisitant(Boolean visitant) |
| Constructor and Description |
|---|
SView(SView value) |
| Modifier and Type | Method and Description |
|---|---|
io.vertx.core.Future<List<SView>> |
ViewService.fetchMatrix(io.vertx.core.json.JsonArray roleIds,
String resourceId,
String view) |
io.vertx.core.Future<List<SView>> |
ViewStub.fetchMatrix(io.vertx.core.json.JsonArray role,
String resourceId,
String view) |
io.vertx.core.Future<SView> |
ViewService.fetchMatrix(String userId,
String resourceId,
String view) |
io.vertx.core.Future<SView> |
ViewStub.fetchMatrix(String user,
String resourceId,
String view) |
io.vertx.core.Future<SView> |
ViewService.saveMatrix(String userId,
String resourceId,
String view,
io.vertx.core.json.JsonArray projection) |
io.vertx.core.Future<SView> |
ViewStub.saveMatrix(String user,
String resourceId,
String view,
io.vertx.core.json.JsonArray projection) |
Copyright © 2021. All rights reserved.