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; }