mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Refactored code comments
This commit is contained in:
parent
0cd90fc349
commit
87d47c1d93
@ -35,12 +35,12 @@ public class DeviceManagementRepository {
|
|||||||
|
|
||||||
public void addDeviceManagementProvider(DeviceManagerService provider) {
|
public void addDeviceManagementProvider(DeviceManagerService provider) {
|
||||||
String deviceType = provider.getProviderType();
|
String deviceType = provider.getProviderType();
|
||||||
|
providers.put(deviceType, provider);
|
||||||
try {
|
try {
|
||||||
DeviceManagerUtil.registerDeviceType(deviceType);
|
DeviceManagerUtil.registerDeviceType(deviceType);
|
||||||
} catch (DeviceManagementException e) {
|
} catch (DeviceManagementException e) {
|
||||||
log.error("Exception occured while registering the device type.",e);
|
log.error("Exception occured while registering the device type.",e);
|
||||||
}
|
}
|
||||||
providers.put(deviceType, provider);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeviceManagerService getDeviceManagementProvider(String type) {
|
public DeviceManagerService getDeviceManagementProvider(String type) {
|
||||||
|
|||||||
@ -51,7 +51,7 @@ public final class DeviceManagerUtil {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolve data source from the data source definition
|
* Resolve data source from the data source definition.
|
||||||
*
|
*
|
||||||
* @param config data source configuration
|
* @param config data source configuration
|
||||||
* @return data source resolved from the data source definition
|
* @return data source resolved from the data source definition
|
||||||
@ -84,6 +84,12 @@ public final class DeviceManagerUtil {
|
|||||||
return dataSource;
|
return dataSource;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds a new device type to the database if it does not exists.
|
||||||
|
*
|
||||||
|
* @param deviceTypeName device type
|
||||||
|
* @return status of the operation
|
||||||
|
*/
|
||||||
public static boolean registerDeviceType(String deviceTypeName) throws DeviceManagementException{
|
public static boolean registerDeviceType(String deviceTypeName) throws DeviceManagementException{
|
||||||
boolean status = false;
|
boolean status = false;
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user