| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XLog |
XLogDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XLog> |
XLogDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByInfoAt(LocalDateTime... values)
Fetch records that have
INFO_AT IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByInfoAtAsync(List<LocalDateTime> values)
Fetch records that have
INFO_AT IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByInfoReadable(String... values)
Fetch records that have
INFO_READABLE IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByInfoReadableAsync(List<String> values)
Fetch records that have
INFO_READABLE IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByInfoStack(String... values)
Fetch records that have
INFO_STACK IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByInfoStackAsync(List<String> values)
Fetch records that have
INFO_STACK IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByInfoSystem(String... values)
Fetch records that have
INFO_SYSTEM IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByInfoSystemAsync(List<String> values)
Fetch records that have
INFO_SYSTEM IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByLevel(String... values)
Fetch records that have
LEVEL IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByLevelAsync(List<String> values)
Fetch records that have
LEVEL IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByLogAgent(String... values)
Fetch records that have
LOG_AGENT IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByLogAgentAsync(List<String> values)
Fetch records that have
LOG_AGENT IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByLogIp(String... values)
Fetch records that have
LOG_IP IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByLogIpAsync(List<String> values)
Fetch records that have
LOG_IP IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByLogUser(String... values)
Fetch records that have
LOG_USER IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByLogUserAsync(List<String> values)
Fetch records that have
LOG_USER IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XLog> |
XLogDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XLog> |
XLogDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XLog>> |
XLogDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<XLog> |
XLogDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XLogDao.getId(XLog object) |
| Modifier and Type | Method and Description |
|---|---|
XLog |
XLog.setActive(Boolean active) |
XLog |
XLog.setCreatedAt(LocalDateTime createdAt) |
XLog |
XLog.setCreatedBy(String createdBy) |
XLog |
XLog.setInfoAt(LocalDateTime infoAt) |
XLog |
XLog.setInfoReadable(String infoReadable) |
XLog |
XLog.setInfoStack(String infoStack) |
XLog |
XLog.setInfoSystem(String infoSystem) |
XLog |
XLog.setKey(String key) |
XLog |
XLog.setLanguage(String language) |
XLog |
XLog.setLevel(String level) |
XLog |
XLog.setLogAgent(String logAgent) |
XLog |
XLog.setLogIp(String logIp) |
XLog |
XLog.setLogUser(String logUser) |
XLog |
XLog.setMetadata(String metadata) |
XLog |
XLog.setSigma(String sigma) |
XLog |
XLog.setType(String type) |
XLog |
XLog.setUpdatedAt(LocalDateTime updatedAt) |
XLog |
XLog.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
XLog(XLog value) |
Copyright © 2021. All rights reserved.