mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge branch 'master' of https://github.com/geethkokila/product-cdm
This commit is contained in:
commit
487b15575a
@ -62,8 +62,9 @@ public interface DeviceManagerService {
|
|||||||
* Method to retrieve the status of the registration process of a particular device.
|
* Method to retrieve the status of the registration process of a particular device.
|
||||||
*
|
*
|
||||||
* @param deviceId Fully qualified device identifier
|
* @param deviceId Fully qualified device identifier
|
||||||
* @return Status of enrollment
|
* @return Status of enrollment
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed while checking the enrollment
|
||||||
|
* status of the device
|
||||||
*/
|
*/
|
||||||
boolean isEnrolled(DeviceIdentifier deviceId) throws DeviceManagementException;
|
boolean isEnrolled(DeviceIdentifier deviceId) throws DeviceManagementException;
|
||||||
|
|
||||||
@ -71,8 +72,9 @@ public interface DeviceManagerService {
|
|||||||
* Method to retrieve the status of a particular device.
|
* Method to retrieve the status of a particular device.
|
||||||
*
|
*
|
||||||
* @param deviceId Fully qualified device identifier
|
* @param deviceId Fully qualified device identifier
|
||||||
* @return Returns if the device is active
|
* @return Returns if the device is active
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed while checking the status
|
||||||
|
* of the device
|
||||||
*/
|
*/
|
||||||
boolean isActive(DeviceIdentifier deviceId) throws DeviceManagementException;
|
boolean isActive(DeviceIdentifier deviceId) throws DeviceManagementException;
|
||||||
|
|
||||||
@ -82,7 +84,8 @@ public interface DeviceManagerService {
|
|||||||
*
|
*
|
||||||
* @param deviceId Fully qualified device identifier
|
* @param deviceId Fully qualified device identifier
|
||||||
* @param status Indicates whether the device is active
|
* @param status Indicates whether the device is active
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed while updating the active status
|
||||||
|
* of the device
|
||||||
*/
|
*/
|
||||||
boolean setActive(DeviceIdentifier deviceId, boolean status) throws DeviceManagementException;
|
boolean setActive(DeviceIdentifier deviceId, boolean status) throws DeviceManagementException;
|
||||||
|
|
||||||
@ -90,7 +93,8 @@ public interface DeviceManagerService {
|
|||||||
* Method to retrieve metadata of all devices registered within CDM corresponding to a particular device type.
|
* Method to retrieve metadata of all devices registered within CDM corresponding to a particular device type.
|
||||||
*
|
*
|
||||||
* @param type Device Type
|
* @param type Device Type
|
||||||
* @return List of metadata corresponding to all devices registered within CDM
|
* @return List of metadata corresponding to all devices registered within CDM
|
||||||
|
* @throws DeviceManagementException If some unusual behaviour is observed while obtaining the enrolled device list
|
||||||
*/
|
*/
|
||||||
List<Device> getAllDevices(String type) throws DeviceManagementException;
|
List<Device> getAllDevices(String type) throws DeviceManagementException;
|
||||||
|
|
||||||
@ -99,14 +103,14 @@ public interface DeviceManagerService {
|
|||||||
*
|
*
|
||||||
* @param deviceId Fully qualified device identifier
|
* @param deviceId Fully qualified device identifier
|
||||||
* @return Metadata corresponding to a particular device
|
* @return Metadata corresponding to a particular device
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed obtaining the device object
|
||||||
*/
|
*/
|
||||||
Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException;
|
Device getDevice(DeviceIdentifier deviceId) throws DeviceManagementException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method to update device information.
|
* Method to update device information.
|
||||||
* @param device Updated device information related data
|
* @param device Updated device information related data
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed while updating the device info
|
||||||
*/
|
*/
|
||||||
boolean updateDeviceInfo(Device device) throws DeviceManagementException;
|
boolean updateDeviceInfo(Device device) throws DeviceManagementException;
|
||||||
|
|
||||||
@ -115,7 +119,8 @@ public interface DeviceManagerService {
|
|||||||
*
|
*
|
||||||
* @param deviceId Fully qualified device identifier
|
* @param deviceId Fully qualified device identifier
|
||||||
* @param ownershipType Type of ownership
|
* @param ownershipType Type of ownership
|
||||||
* @throws DeviceManagementException If some unusual behaviour is observed while enrolling a device
|
* @throws DeviceManagementException If some unusual behaviour is observed while setting the ownership
|
||||||
|
* of the device
|
||||||
*/
|
*/
|
||||||
boolean setOwnership(DeviceIdentifier deviceId, String ownershipType) throws DeviceManagementException;
|
boolean setOwnership(DeviceIdentifier deviceId, String ownershipType) throws DeviceManagementException;
|
||||||
|
|
||||||
|
|||||||
@ -35,6 +35,7 @@
|
|||||||
<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 Mobile Impl Bundle</Bundle-Description>
|
<Bundle-Description>Device Management Mobile Impl Bundle</Bundle-Description>
|
||||||
|
<Bundle-Activator>org.wso2.carbon.device.mgt.mobile.impl.internal.MobileDeviceManagementBundleActivator</Bundle-Activator>
|
||||||
<Private-Package>org.wso2.carbon.device.mgt.mobile.impl.internal</Private-Package>
|
<Private-Package>org.wso2.carbon.device.mgt.mobile.impl.internal</Private-Package>
|
||||||
<Import-Package>
|
<Import-Package>
|
||||||
org.osgi.framework,
|
org.osgi.framework,
|
||||||
|
|||||||
@ -26,9 +26,9 @@ import org.wso2.carbon.device.mgt.mobile.impl.android.AndroidDeviceManagerServic
|
|||||||
import org.wso2.carbon.device.mgt.mobile.impl.ios.IOSDeviceManagerService;
|
import org.wso2.carbon.device.mgt.mobile.impl.ios.IOSDeviceManagerService;
|
||||||
import org.wso2.carbon.device.mgt.mobile.impl.windows.WindowsDeviceManagerService;
|
import org.wso2.carbon.device.mgt.mobile.impl.windows.WindowsDeviceManagerService;
|
||||||
|
|
||||||
public class MobileDeviceManagementServiceComponent implements BundleActivator {
|
public class MobileDeviceManagementBundleActivator implements BundleActivator {
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(MobileDeviceManagementServiceComponent.class);
|
private static final Log log = LogFactory.getLog(MobileDeviceManagementBundleActivator.class);
|
||||||
private ServiceRegistration androidServiceRegRef;
|
private ServiceRegistration androidServiceRegRef;
|
||||||
private ServiceRegistration iOSServiceRegRef;
|
private ServiceRegistration iOSServiceRegRef;
|
||||||
private ServiceRegistration windowsServiceRegRef;
|
private ServiceRegistration windowsServiceRegRef;
|
||||||
Loading…
Reference in New Issue
Block a user