Removed private package declaration in device common bundle & added doc comments

merge-requests/7/head
harshanL 10 years ago
parent 355babd9d5
commit d84a3c47d2

@ -30,7 +30,6 @@
<Bundle-Name>${project.artifactId}</Bundle-Name> <Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-Version>${project.version}</Bundle-Version> <Bundle-Version>${project.version}</Bundle-Version>
<Bundle-Description>Device Management Common Bundle</Bundle-Description> <Bundle-Description>Device Management Common Bundle</Bundle-Description>
<Private-Package>org.wso2.carbon.device.mgt.common</Private-Package>
<Export-Package> <Export-Package>
org.wso2.carbon.device.mgt.common.* org.wso2.carbon.device.mgt.common.*
</Export-Package> </Export-Package>

@ -41,7 +41,7 @@ public interface DeviceDAO {
/** /**
* @param type - Device type. * @param type - Device type.
* @param identifier - Device identifier. * @param identifier - Device identifier.
* @return * @return the Device object which matches given data
* @throws DeviceManagementDAOException * @throws DeviceManagementDAOException
*/ */
Device getDeviceByDeviceIdentifier(Integer type, String identifier) throws DeviceManagementDAOException; Device getDeviceByDeviceIdentifier(Integer type, String identifier) throws DeviceManagementDAOException;

Loading…
Cancel
Save