| Package | Description |
|---|---|
| cn.vertxup.rbac.domain.tables.daos | |
| cn.vertxup.rbac.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
SUser |
SUserDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<SUser> |
SUserDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByAlias(String... values)
Fetch records that have
ALIAS IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByAliasAsync(List<String> values)
Fetch records that have
ALIAS IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByCategory(String... values)
Fetch records that have
CATEGORY IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByCategoryAsync(List<String> values)
Fetch records that have
CATEGORY IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByEmail(String... values)
Fetch records that have
EMAIL IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByEmailAsync(List<String> values)
Fetch records that have
EMAIL IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByMobile(String... values)
Fetch records that have
MOBILE IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByMobileAsync(List<String> values)
Fetch records that have
MOBILE IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByModelId(String... values)
Fetch records that have
MODEL_ID IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByModelIdAsync(List<String> values)
Fetch records that have
MODEL_ID IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByModelKey(String... values)
Fetch records that have
MODEL_KEY IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByModelKeyAsync(List<String> values)
Fetch records that have
MODEL_KEY IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByPassword(String... values)
Fetch records that have
PASSWORD IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByPasswordAsync(List<String> values)
Fetch records that have
PASSWORD IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByRealname(String... values)
Fetch records that have
REALNAME IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByRealnameAsync(List<String> values)
Fetch records that have
REALNAME IN (values) asynchronously |
List<SUser> |
SUserDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<SUser> |
SUserDao.fetchByUsername(String... values)
Fetch records that have
USERNAME IN (values) |
CompletableFuture<List<SUser>> |
SUserDao.fetchByUsernameAsync(List<String> values)
Fetch records that have
USERNAME IN (values) asynchronously |
CompletableFuture<SUser> |
SUserDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SUserDao.getId(SUser object) |
| Modifier and Type | Method and Description |
|---|---|
SUser |
SUser.setActive(Boolean active) |
SUser |
SUser.setAlias(String alias) |
SUser |
SUser.setCategory(String category) |
SUser |
SUser.setCreatedAt(LocalDateTime createdAt) |
SUser |
SUser.setCreatedBy(String createdBy) |
SUser |
SUser.setEmail(String email) |
SUser |
SUser.setKey(String key) |
SUser |
SUser.setLanguage(String language) |
SUser |
SUser.setMetadata(String metadata) |
SUser |
SUser.setMobile(String mobile) |
SUser |
SUser.setModelId(String modelId) |
SUser |
SUser.setModelKey(String modelKey) |
SUser |
SUser.setPassword(String password) |
SUser |
SUser.setRealname(String realname) |
SUser |
SUser.setSigma(String sigma) |
SUser |
SUser.setUpdatedAt(LocalDateTime updatedAt) |
SUser |
SUser.setUpdatedBy(String updatedBy) |
SUser |
SUser.setUsername(String username) |
| Constructor and Description |
|---|
SUser(SUser value) |
Copyright © 2019. All rights reserved.