|
|
@ -51,43 +51,43 @@ public interface GadgetDataService {
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
PaginationResult getNonCompliantDeviceCountsByFeatures(PaginationRequest paginationRequest)
|
|
|
|
PaginationResult getNonCompliantDeviceCountsByFeatures(PaginationRequest paginationRequest)
|
|
|
|
throws SQLException, InvalidParameterException;
|
|
|
|
throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
int getDeviceCount(Map<String, Object> filters) throws SQLException;
|
|
|
|
int getDeviceCount(Map<String, Object> filters) throws SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
int getFeatureNonCompliantDeviceCount(String nonCompliantFeatureCode,
|
|
|
|
int getFeatureNonCompliantDeviceCount(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Object> filters) throws SQLException, InvalidParameterException;
|
|
|
|
Map<String, Object> filters) throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
Map<String, Integer> getDeviceCountsByPlatforms(Map<String, Object> filters) throws SQLException;
|
|
|
|
Map<String, Integer> getDeviceCountsByPlatforms(Map<String, Object> filters) throws SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
Map<String, Integer> getFeatureNonCompliantDeviceCountsByPlatforms(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Integer> getFeatureNonCompliantDeviceCountsByPlatforms(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Object> filters) throws SQLException, InvalidParameterException;
|
|
|
|
Map<String, Object> filters) throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
Map<String, Integer> getDeviceCountsByOwnershipTypes(Map<String, Object> filters) throws SQLException;
|
|
|
|
Map<String, Integer> getDeviceCountsByOwnershipTypes(Map<String, Object> filters) throws SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
Map<String, Integer> getFeatureNonCompliantDeviceCountsByOwnershipTypes(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Integer> getFeatureNonCompliantDeviceCountsByOwnershipTypes(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Object> filters) throws SQLException, InvalidParameterException;
|
|
|
|
Map<String, Object> filters) throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
PaginationResult getDevicesWithDetails(Map<String, Object> filters,
|
|
|
|
PaginationResult getDevicesWithDetails(Map<String, Object> filters,
|
|
|
|
PaginationRequest paginationRequest) throws SQLException, InvalidParameterException;
|
|
|
|
PaginationRequest paginationRequest) throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
PaginationResult getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode,
|
|
|
|
PaginationResult getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Object> filters, PaginationRequest paginationRequest)
|
|
|
|
Map<String, Object> filters, PaginationRequest paginationRequest)
|
|
|
|
throws SQLException, InvalidParameterException;
|
|
|
|
throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
List<Map<String, Object>> getDevicesWithDetails(Map<String, Object> filters) throws SQLException;
|
|
|
|
List<Map<String, Object>> getDevicesWithDetails(Map<String, Object> filters) throws SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
List<Map<String, Object>> getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode,
|
|
|
|
List<Map<String, Object>> getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode,
|
|
|
|
Map<String, Object> filters) throws SQLException, InvalidParameterException;
|
|
|
|
Map<String, Object> filters) throws InvalidParameterException, SQLException;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|