Package | Description |
---|---|
com.hp.sdn.adm.dao |
Definitions of data access services for persisting and retrieving
information applicable at the Administrator tier of the SDN Controller.
|
com.hp.sdn.dvc.dao |
Device Key persistence and teaming
|
com.hp.util.dao |
Definitions of interfaces and utility class for managing interactions to the persistence layer.
|
com.hp.util.dao.query |
Basic database queries that utilize a data access object.
|
Modifier and Type | Method and Description |
---|---|
ReadQuery<Long> |
QueryService.getCountAlertQuery()
Creates a query to retrieve the count of alerts in persistence.
|
ReadQuery<Long> |
QueryService.getCountAuditLogEntryQuery(AuditLogFilter filter)
Creates a query to retrieve the count of AuditLogEntry objects based on
the supplied filter.
|
ReadQuery<Void> |
QueryService.getExportAuditLogQuery(AuditLogFilter filter,
File csvTarget)
Create a query to export the audit log data in a CSV format.
|
ReadQuery<List<Alert>> |
QueryService.getFindAlertsQuery(AlertFilter filter,
SortSpecification<AlertSortAttribute> sortSpecification)
Creates a query that will find Alerts based on the supplied query
criteria.
|
ReadQuery<List<AlertTopicListener>> |
QueryService.getFindAlertTopicListenersQuery()
Creates a query that will find all Alert Topic Listeners.
|
ReadQuery<List<AuditLogEntry>> |
QueryService.getFindAuditLogQuery(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpecification)
Creates a query that will find AuditLogEntry objects based on the
supplied query criteria.
|
ReadQuery<List<LicenseKey>> |
QueryService.getFindLicensesQuery()
Creates a find query that will find all LicenseKey objects.
|
ReadQuery<List<LicInstallId>> |
QueryService.getFindLicInstallIdsQuery()
Creates a find query that will find all LicInstallId objects.
|
ReadQuery<List<SystemInformation>> |
QueryService.getFindSystemsQuery(SystemInformationFilter filter,
SortSpecification<SystemInformationSortAttribute> sortSpecification)
Creates a query to find systems in the database.
|
ReadQuery<Alert> |
QueryService.getGetAlertQuery(Id<Alert,UUID> id)
Creates a query that gets an alert by its id.
|
ReadQuery<AlertTopicListener> |
QueryService.getGetAlertTopicListenerQuery(Id<AlertTopicListener,UUID> id)
Creates a query that gets an alert topic listener by its id.
|
ReadQuery<AuditLogEntry> |
QueryService.getGetAuditLogQuery(Id<AuditLogEntry,UUID> id)
Creates a query that gets an audit log by its id.
|
ReadQuery<SystemInformation> |
QueryService.getGetSystemInformationQuery(Id<SystemInformation,UUID> id)
Creates a query that gets a system by its id.
|
ReadQuery<Page<Alert>> |
QueryService.getPageAlertsQuery(AlertFilter filter,
SortSpecification<AlertSortAttribute> sortSpecification,
PageRequest pageRequest)
Creates a query that will find Alerts based on the supplied
query criteria.
|
ReadQuery<Page<AuditLogEntry>> |
QueryService.getPageAuditLogQuery(AuditLogFilter filter,
SortSpecification<AuditLogSortAttribute> sortSpecification,
PageRequest pageRequest)
Creates a query that will produce a page of AuditLogEntry data based on
the supplied filter and sorting criteria.
|
Modifier and Type | Method and Description |
---|---|
ReadQuery<List<T>> |
AbstractQuery.find(F filter) |
Modifier and Type | Method and Description |
---|---|
<T> T |
DataStoreService.execute(ReadQuery<T> query)
Executes a query operation on the persistence layer.
|
<T> T |
DataStoreManager.execute(ReadQuery<T> query) |
Modifier and Type | Class and Description |
---|---|
class |
DaoCountQuery<F>
Gets the number of persist objects based on a filter criteria.
|
class |
DaoFindDependentQuery<P extends Storable<?> & Dependable<E>,Q extends Transportable<? super Q,?> & Dependent<E>,F,S,E extends Serializable>
Query to find dependent transport objects on the database.
|
class |
DaoFindFullDependentQuery<P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>>
Query to find dependent transport objects on the database.
|
class |
DaoFindFullNestedDependentQuery<P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>>
Query to find dependent transport objects on the database.
|
class |
DaoFindQuery<P extends Storable<?>,T extends Transportable<? super T,?>,F,S>
Returning data in the order specified by the sort specifications based on
the filter.
|
class |
DaoGetDependentQuery<I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,Q extends Transportable<? super Q,I> & Dependent<E>,E extends Serializable,R extends Transportable<? super R,E>>
Query to get a dependent transport object from the database.
|
class |
DaoGetFullDependentQuery<I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>>
Query to get a dependent transport object from the database.
|
class |
DaoGetFullNestedDependentQuery<I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>>
Query to get a dependent transport object from the database.
|
class |
DaoGetQuery<I extends Serializable,P extends Storable<I>,T extends Transportable<? super T,I>>
Query to get a transport object from the database.
|
class |
DaoPagedFindDependentQuery<P extends Storable<?> & Dependable<E>,Q extends Transportable<? super Q,?> & Dependent<E>,F,S,E extends Serializable>
Query to find transport objects on the database
|
class |
DaoPagedFindFullDependentQuery<P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>>
Query to find transport objects on the database.
|
class |
DaoPagedFindFullNestedDependentQuery<P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>>
Query to find transport objects on the database.
|
class |
DaoPagedFindQuery<P extends Storable<?>,T extends Transportable<? super T,?>,F,S>
Query to produce a page of data.
|
Modifier and Type | Method and Description |
---|---|
static <P extends Storable<?> & Dependable<E>,Q extends Transportable<? super Q,?> & Dependent<E>,F,S,E extends Serializable> |
DaoFindDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
BidirectionalDependentDao<?,P,?,Q,F,S,E,?,?> dao)
Creates a query.
|
static <P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>> |
DaoFindFullNestedDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
BidirectionalDependentDao<?,P,T,?,F,S,E,W,R> dao,
BidirectionalDependentDao<E,W,R,?,?,?,H,M,N> ownerDao,
Dao<H,M,N,?,?> rootOwnerDao)
Creates a query.
|
static <P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>> |
DaoFindFullDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
BidirectionalDependentDao<?,P,T,?,F,S,E,W,R> dao,
Dao<E,W,R,?,?> ownerDao)
Creates a query.
|
static <P extends Storable<?> & Dependable<E>,Q extends Transportable<? super Q,?> & Dependent<E>,F,S,E extends Serializable> |
DaoPagedFindDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
PageRequest pageRequest,
BidirectionalDependentDao<?,P,?,Q,F,S,E,?,?> dao)
Creates a query.
|
static <P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>> |
DaoPagedFindFullNestedDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
PageRequest pageRequest,
BidirectionalDependentDao<?,P,T,?,F,S,E,W,R> dao,
BidirectionalDependentDao<E,W,R,?,?,?,H,M,N> ownerDao,
Dao<H,M,N,?,?> rootOwnerDao)
Creates a query.
|
static <P extends Storable<?> & Dependable<E>,T extends Transportable<? super T,?> & Dependent<R>,F,S,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>> |
DaoPagedFindFullDependentQuery.createQuery(F filter,
SortSpecification<S> sortSpecification,
PageRequest pageRequest,
BidirectionalDependentDao<?,P,T,?,F,S,E,W,R> dao,
Dao<E,W,R,?,?> ownerDao)
Creates a query.
|
static <I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,Q extends Transportable<? super Q,I> & Dependent<E>,E extends Serializable,R extends Transportable<? super R,E>> |
DaoGetDependentQuery.createQuery(Id<? extends Q,I> id,
BidirectionalDependentDao<I,P,T,Q,?,?,E,?,R> dao)
Creates a query.
|
static <I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,E extends Serializable,W extends Storable<E> & Dependable<H>,R extends Transportable<? super R,E> & Dependent<N>,H extends Serializable,M extends Storable<H>,N extends Transportable<? super N,H>> |
DaoGetFullNestedDependentQuery.createQuery(Id<T,I> id,
BidirectionalDependentDao<I,P,T,?,?,?,E,W,R> dao,
BidirectionalDependentDao<E,W,R,?,?,?,H,M,N> ownerDao,
Dao<H,M,N,?,?> rootOwnerDao)
Creates a query.
|
static <I extends Serializable,P extends Storable<I> & Dependable<E>,T extends Transportable<? super T,I> & Dependent<R>,E extends Serializable,W extends Storable<E>,R extends Transportable<? super R,E>> |
DaoGetFullDependentQuery.createQuery(Id<T,I> id,
BidirectionalDependentDao<I,P,T,?,?,?,E,W,R> dao,
Dao<E,W,R,?,?> ownerDao)
Creates a query.
|
Copyright © 2015. All Rights Reserved.