Package | Description |
---|---|
org.waarp.openr66.dao | |
org.waarp.openr66.dao.database | |
org.waarp.openr66.dao.database.h2 | |
org.waarp.openr66.dao.database.mariadb | |
org.waarp.openr66.dao.database.mysql | |
org.waarp.openr66.dao.database.oracle | |
org.waarp.openr66.dao.database.postgres | |
org.waarp.openr66.dao.xml | |
org.waarp.openr66.database.data |
Classes implementing Database Data model
|
Modifier and Type | Method and Description |
---|---|
long |
TransferDAO.count(List<Filter> filters)
Retrieve Transfer objects count with the given filters
|
long |
AbstractDAO.count(List<Filter> filters)
Count all objects corresponding to the given filters
from the persistance layer
|
void |
AbstractDAO.delete(E object)
Remove the specified object from the persistance layer
|
void |
AbstractDAO.deleteAll()
Remove all objects from the persistance layer
|
boolean |
TransferDAO.exist(long id,
String requester,
String requested,
String owner)
Verify if a Transfer object with the specified Special ID exists in the
persistance layer
|
boolean |
AbstractDAO.exist(String id)
Verify if an object with the specified id exists in the
persistance layer
|
List<E> |
AbstractDAO.find(List<Filter> filters)
Retrieve all objects corresponding to the given filters in a List
from the persistance layer
|
List<Transfer> |
TransferDAO.find(List<Filter> filters,
int limit)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<E> |
AbstractDAO.find(List<Filter> filters,
int limit)
Retrieve all objects corresponding to the given filters in a List
from the persistance layer
|
List<Transfer> |
TransferDAO.find(List<Filter> filters,
int limit,
int offset)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<Transfer> |
TransferDAO.find(List<Filter> filters,
String column,
boolean ascend)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<E> |
AbstractDAO.find(List<Filter> filters,
String field,
boolean asc)
Retrieve all objects corresponding to the given filters in a List
from the persistance layer
|
List<Transfer> |
TransferDAO.find(List<Filter> filters,
String column,
boolean ascend,
int limit)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<E> |
AbstractDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit)
Retrieve all objects corresponding to the given filters in a List
from the persistance layer
|
List<Transfer> |
TransferDAO.find(List<Filter> filters,
String column,
boolean ascend,
int limit,
int offset)
Retrieve all Transfer objects to the given filters in a List from the
persistance layer
|
List<E> |
AbstractDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset)
Retrieve all objects corresponding to the given filters in a List
from the persistance layer
|
List<E> |
AbstractDAO.getAll()
Retrieve all objects in a List from the persistance layer
|
abstract BusinessDAO |
DAOFactory.getBusinessDAO(boolean isCacheable)
Return a BusinessDAO
|
abstract HostDAO |
DAOFactory.getHostDAO(boolean isCacheable)
Return a HostDAO
|
abstract LimitDAO |
DAOFactory.getLimitDAO(boolean isCacheable)
Return a LimitDAO
|
abstract MultipleMonitorDAO |
DAOFactory.getMultipleMonitorDAO(boolean isCacheable)
Return a MultipleMonitorDAO
|
abstract RuleDAO |
DAOFactory.getRuleDAO(boolean isCacheable)
Return a RuleDAO
|
abstract TransferDAO |
DAOFactory.getTransferDAO()
Return a TransferDAO
|
void |
AbstractDAO.insert(E object)
Insert the specified object in the persistance layer
|
Transfer |
TransferDAO.select(long id,
String requester,
String requested,
String owner)
Retrieve the Transfer object with the specified Special ID from the
persistance layer
|
E |
AbstractDAO.select(String id)
Retrieve the object with the specified id from the persistance
layer
|
void |
AbstractDAO.update(E object)
Update the specified object in the persistance layer
|
void |
AbstractDAO.update(List<Filter> filters,
String toSet)
Update all objects corresponding to the given filters in a List
from the persistance layer
|
Modifier and Type | Method and Description |
---|---|
long |
StatementExecutor.count(List<Filter> filters) |
void |
StatementExecutor.delete(E e1) |
int |
StatementExecutor.delete(List<Filter> filters)
Delete all items according to filter
|
void |
DBTransferDAO.delete(Transfer transfer) |
void |
StatementExecutor.deleteAll() |
boolean |
DBTransferDAO.exist(long id,
String requester,
String requested,
String owner) |
boolean |
StatementExecutor.exist(String id) |
List<E> |
StatementExecutor.find(List<Filter> filters) |
List<E> |
StatementExecutor.find(List<Filter> filters,
int limit) |
List<Transfer> |
DBTransferDAO.find(List<Filter> filters,
int limit,
int offset) |
List<E> |
StatementExecutor.find(List<Filter> filters,
String field,
boolean asc) |
List<E> |
StatementExecutor.find(List<Filter> filters,
String field,
boolean asc,
int limit) |
List<E> |
StatementExecutor.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset) |
List<E> |
StatementExecutor.getAll() |
DBBusinessDAO |
DBDAOFactory.getBusinessDAO(boolean isCacheable) |
Rule |
DBRuleDAO.getFromResultSet(ResultSet set) |
abstract E |
StatementExecutor.getFromResultSet(ResultSet set) |
DBHostDAO |
DBDAOFactory.getHostDAO(boolean isCacheable) |
DBLimitDAO |
DBDAOFactory.getLimitDAO(boolean isCacheable) |
DBMultipleMonitorDAO |
DBDAOFactory.getMultipleMonitorDAO(boolean isCacheable) |
protected abstract long |
DBTransferDAO.getNextId() |
DBRuleDAO |
DBDAOFactory.getRuleDAO(boolean isCacheable) |
DBTransferDAO |
DBDAOFactory.getTransferDAO() |
void |
StatementExecutor.insert(E e1) |
void |
DBTransferDAO.insert(Transfer transfer) |
Transfer |
DBTransferDAO.select(long id,
String requester,
String requested,
String owner) |
E |
StatementExecutor.select(String id) |
void |
StatementExecutor.update(E e1) |
void |
StatementExecutor.update(List<Filter> filters,
String fieldToSet) |
void |
DBTransferDAO.updateRank(Transfer e1) |
void |
DBTransferDAO.updateRankUpdatedInfoStepStatusStop(Transfer e1) |
Modifier and Type | Method and Description |
---|---|
protected long |
H2TransferDAO.getNextId() |
Constructor and Description |
---|
H2TransferDAO(Connection con) |
Modifier and Type | Method and Description |
---|---|
protected long |
MariaDBTransferDAO.getNextId() |
Constructor and Description |
---|
MariaDBTransferDAO(Connection con) |
Modifier and Type | Method and Description |
---|---|
protected long |
MySqlDBTransferDAO.getNextId() |
Constructor and Description |
---|
MySqlDBTransferDAO(Connection con) |
Modifier and Type | Method and Description |
---|---|
protected long |
OracleTransferDAO.getNextId() |
Constructor and Description |
---|
OracleTransferDAO(Connection con) |
Modifier and Type | Method and Description |
---|---|
protected long |
PostgreSQLTransferDAO.getNextId() |
Constructor and Description |
---|
PostgreSQLTransferDAO(Connection con) |
Modifier and Type | Method and Description |
---|---|
long |
XMLRuleDAO.count(List<Filter> fitlers)
|
long |
XMLTransferDAO.count(List<Filter> fitlers)
|
long |
XMLBusinessDAO.count(List<Filter> fitlers)
|
long |
XMLHostDAO.count(List<Filter> fitlers)
|
long |
XMLLimitDAO.count(List<Filter> fitlers)
|
boolean |
XMLBusinessDAO.exist(String hostid) |
boolean |
XMLHostDAO.exist(String hostid) |
boolean |
XMLLimitDAO.exist(String hostid) |
List<Rule> |
XMLRuleDAO.find(List<Filter> fitlers) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> fitlers)
|
List<Business> |
XMLBusinessDAO.find(List<Filter> fitlers) |
List<Host> |
XMLHostDAO.find(List<Filter> fitlers) |
List<Limit> |
XMLLimitDAO.find(List<Filter> fitlers) |
List<Rule> |
XMLRuleDAO.find(List<Filter> filters,
int limit) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> filters,
int limit)
|
List<Business> |
XMLBusinessDAO.find(List<Filter> filters,
int limit) |
List<Host> |
XMLHostDAO.find(List<Filter> filters,
int limit) |
List<Limit> |
XMLLimitDAO.find(List<Filter> filters,
int limit) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> filters,
int limit,
int offset)
|
List<Rule> |
XMLRuleDAO.find(List<Filter> filters,
String field,
boolean asc) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> filters,
String column,
boolean ascend)
|
List<Business> |
XMLBusinessDAO.find(List<Filter> filters,
String field,
boolean asc) |
List<Host> |
XMLHostDAO.find(List<Filter> filters,
String field,
boolean asc) |
List<Limit> |
XMLLimitDAO.find(List<Filter> filters,
String field,
boolean asc) |
List<Rule> |
XMLRuleDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> filters,
String column,
boolean ascend,
int limit)
|
List<Business> |
XMLBusinessDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit) |
List<Host> |
XMLHostDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit) |
List<Limit> |
XMLLimitDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit) |
List<Rule> |
XMLRuleDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset) |
List<Transfer> |
XMLTransferDAO.find(List<Filter> filters,
String column,
boolean ascend,
int limit,
int offset)
|
List<Business> |
XMLBusinessDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset) |
List<Host> |
XMLHostDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset) |
List<Limit> |
XMLLimitDAO.find(List<Filter> filters,
String field,
boolean asc,
int limit,
int offset) |
List<Rule> |
XMLRuleDAO.getAll() |
List<Transfer> |
XMLTransferDAO.getAll() |
List<Business> |
XMLBusinessDAO.getAll() |
List<Host> |
XMLHostDAO.getAll() |
List<Limit> |
XMLLimitDAO.getAll() |
LimitDAO |
XMLDAOFactory.getLimitDAO(boolean isCacheable) |
MultipleMonitorDAO |
XMLDAOFactory.getMultipleMonitorDAO(boolean isCacheable) |
void |
XMLTransferDAO.insert(Transfer transfer) |
Transfer |
XMLTransferDAO.select(long id,
String requester,
String requested,
String owner) |
Rule |
XMLRuleDAO.select(String rulename) |
Business |
XMLBusinessDAO.select(String hostid) |
Host |
XMLHostDAO.select(String hostid) |
Limit |
XMLLimitDAO.select(String hostid) |
void |
XMLRuleDAO.update(List<Filter> filters,
String toSet) |
void |
XMLTransferDAO.update(List<Filter> filters,
String toSet) |
void |
XMLBusinessDAO.update(List<Filter> filters,
String toSet) |
void |
XMLHostDAO.update(List<Filter> filters,
String toSet) |
void |
XMLLimitDAO.update(List<Filter> filters,
String toSet) |
void |
XMLTransferDAO.update(Transfer transfer) |
Modifier and Type | Method and Description |
---|---|
protected AbstractDAO<Business> |
DbHostConfiguration.getDao(boolean isCacheable) |
protected AbstractDAO<MultipleMonitor> |
DbMultipleMonitor.getDao(boolean isCacheable) |
protected AbstractDAO<Transfer> |
DbTaskRunner.getDao(boolean isCacheable) |
protected abstract AbstractDAO<E> |
AbstractDbDataDao.getDao(boolean isCacheable) |
protected AbstractDAO<Limit> |
DbConfiguration.getDao(boolean isCacheable) |
protected AbstractDAO<Host> |
DbHostAuth.getDao(boolean isCacheable) |
protected AbstractDAO<Rule> |
DbRule.getDao(boolean isCacheable) |
Copyright © 2009–2022 Waarp. All rights reserved.