From 945e188917f8ecc296f32802ed3c3b30d4519496 Mon Sep 17 00:00:00 2001 From: dilanua Date: Thu, 5 May 2016 12:03:11 +0530 Subject: [PATCH] Adding temporary development code bits for dashboard analytics feature --- .../mgt/analytics/dashboard/GadgetDataService.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.analytics.dashboard/src/main/java/org/wso2/carbon/device/mgt/analytics/dashboard/GadgetDataService.java b/components/device-mgt/org.wso2.carbon.device.mgt.analytics.dashboard/src/main/java/org/wso2/carbon/device/mgt/analytics/dashboard/GadgetDataService.java index bdb0b4258f..0c8d6bf9f9 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.analytics.dashboard/src/main/java/org/wso2/carbon/device/mgt/analytics/dashboard/GadgetDataService.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.analytics.dashboard/src/main/java/org/wso2/carbon/device/mgt/analytics/dashboard/GadgetDataService.java @@ -51,43 +51,43 @@ public interface GadgetDataService { @SuppressWarnings("unused") PaginationResult getNonCompliantDeviceCountsByFeatures(PaginationRequest paginationRequest) - throws SQLException, InvalidParameterException; + throws InvalidParameterException, SQLException; @SuppressWarnings("unused") int getDeviceCount(Map filters) throws SQLException; @SuppressWarnings("unused") int getFeatureNonCompliantDeviceCount(String nonCompliantFeatureCode, - Map filters) throws SQLException, InvalidParameterException; + Map filters) throws InvalidParameterException, SQLException; @SuppressWarnings("unused") Map getDeviceCountsByPlatforms(Map filters) throws SQLException; @SuppressWarnings("unused") Map getFeatureNonCompliantDeviceCountsByPlatforms(String nonCompliantFeatureCode, - Map filters) throws SQLException, InvalidParameterException; + Map filters) throws InvalidParameterException, SQLException; @SuppressWarnings("unused") Map getDeviceCountsByOwnershipTypes(Map filters) throws SQLException; @SuppressWarnings("unused") Map getFeatureNonCompliantDeviceCountsByOwnershipTypes(String nonCompliantFeatureCode, - Map filters) throws SQLException, InvalidParameterException; + Map filters) throws InvalidParameterException, SQLException; @SuppressWarnings("unused") PaginationResult getDevicesWithDetails(Map filters, - PaginationRequest paginationRequest) throws SQLException, InvalidParameterException; + PaginationRequest paginationRequest) throws InvalidParameterException, SQLException; @SuppressWarnings("unused") PaginationResult getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode, Map filters, PaginationRequest paginationRequest) - throws SQLException, InvalidParameterException; + throws InvalidParameterException, SQLException; @SuppressWarnings("unused") List> getDevicesWithDetails(Map filters) throws SQLException; @SuppressWarnings("unused") List> getFeatureNonCompliantDevicesWithDetails(String nonCompliantFeatureCode, - Map filters) throws SQLException, InvalidParameterException; + Map filters) throws InvalidParameterException, SQLException; }