From d84a3c47d2cfe8f862dee97f4ccb176b806e0eef Mon Sep 17 00:00:00 2001 From: harshanL Date: Mon, 2 Feb 2015 08:04:13 +0530 Subject: [PATCH] Removed private package declaration in device common bundle & added doc comments --- components/device-mgt/org.wso2.carbon.device.mgt.common/pom.xml | 1 - .../java/org/wso2/carbon/device/mgt/core/dao/DeviceDAO.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.common/pom.xml b/components/device-mgt/org.wso2.carbon.device.mgt.common/pom.xml index db2b794303a..bce3acf7f14 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.common/pom.xml +++ b/components/device-mgt/org.wso2.carbon.device.mgt.common/pom.xml @@ -30,7 +30,6 @@ ${project.artifactId} ${project.version} Device Management Common Bundle - org.wso2.carbon.device.mgt.common org.wso2.carbon.device.mgt.common.* 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 f474ba1c6f8..12d0e757e1f 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 @@ -41,7 +41,7 @@ public interface DeviceDAO { /** * @param type - Device type. * @param identifier - Device identifier. - * @return + * @return the Device object which matches given data * @throws DeviceManagementDAOException */ Device getDeviceByDeviceIdentifier(Integer type, String identifier) throws DeviceManagementDAOException;