| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XSource |
XSourceDao.fetchOneByAppId(String value)
Fetch a unique record that has
APP_ID = value |
XSource |
XSourceDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XSource> |
XSourceDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByAppId(String... values)
Fetch records that have
APP_ID IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByAppIdAsync(List<String> values)
Fetch records that have
APP_ID IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByCategory(String... values)
Fetch records that have
CATEGORY IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByCategoryAsync(List<String> values)
Fetch records that have
CATEGORY IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByDriverClassName(String... values)
Fetch records that have
DRIVER_CLASS_NAME IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByDriverClassNameAsync(List<String> values)
Fetch records that have
DRIVER_CLASS_NAME IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByHostname(String... values)
Fetch records that have
HOSTNAME IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByHostnameAsync(List<String> values)
Fetch records that have
HOSTNAME IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByInstance(String... values)
Fetch records that have
INSTANCE IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByInstanceAsync(List<String> values)
Fetch records that have
INSTANCE IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByIpV4(String... values)
Fetch records that have
IP_V4 IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByIpV4Async(List<String> values)
Fetch records that have
IP_V4 IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByIpV6(String... values)
Fetch records that have
IP_V6 IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByIpV6Async(List<String> values)
Fetch records that have
IP_V6 IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByJdbcConfig(String... values)
Fetch records that have
JDBC_CONFIG IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByJdbcConfigAsync(List<String> values)
Fetch records that have
JDBC_CONFIG IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByJdbcUrl(String... values)
Fetch records that have
JDBC_URL IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByJdbcUrlAsync(List<String> values)
Fetch records that have
JDBC_URL IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByPassword(String... values)
Fetch records that have
PASSWORD IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByPasswordAsync(List<String> values)
Fetch records that have
PASSWORD IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByPort(Integer... values)
Fetch records that have
PORT IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByPortAsync(List<Integer> values)
Fetch records that have
PORT IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<XSource> |
XSourceDao.fetchByUsername(String... values)
Fetch records that have
USERNAME IN (values) |
CompletableFuture<List<XSource>> |
XSourceDao.fetchByUsernameAsync(List<String> values)
Fetch records that have
USERNAME IN (values) asynchronously |
CompletableFuture<XSource> |
XSourceDao.fetchOneByAppIdAsync(String value)
Fetch a unique record that has
APP_ID = value asynchronously |
CompletableFuture<XSource> |
XSourceDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XSourceDao.getId(XSource object) |
| Constructor and Description |
|---|
XSource(XSource value) |
Copyright © 2021. All rights reserved.