From 451c38457fd3ff41b81813abb5c28838424162d8 Mon Sep 17 00:00:00 2001 From: prabathabey Date: Mon, 8 Dec 2014 19:22:06 +0530 Subject: [PATCH] code cleanup --- .../java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java | 3 +++ .../org/wso2/carbon/device/mgt/core/dao/DeviceTypeDAO.java | 3 +++ 2 files changed, 6 insertions(+) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java index 503138d987..5bf4335dba 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java @@ -20,6 +20,9 @@ import org.wso2.carbon.device.mgt.core.dto.Status; import java.util.List; +/** + * This class represents the key operations associated with persisting device related information + */ public interface DeviceDAO { void addDevice(Device device) throws DeviceManagementDAOException; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceTypeDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceTypeDAO.java index 8cc8d3896c..668f0db11d 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceTypeDAO.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/DeviceTypeDAO.java @@ -22,6 +22,9 @@ import org.wso2.carbon.device.mgt.core.dto.DeviceType; import java.util.List; +/** + * This class represents the key operations associated with persisting device type related information + */ public interface DeviceTypeDAO { void addDeviceType(DeviceType deviceType) throws DeviceManagementDAOException;