mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'configuration-endpoint' into 'master'
Add device identifier to configuration retrieval response See merge request entgra/carbon-device-mgt!222
This commit is contained in:
commit
aac7d85c00
@ -32,7 +32,7 @@ import java.util.List;
|
|||||||
"the server")
|
"the server")
|
||||||
public class DeviceConfiguration {
|
public class DeviceConfiguration {
|
||||||
@ApiModelProperty(name = "deviceId", value = "ID of the device", required = true)
|
@ApiModelProperty(name = "deviceId", value = "ID of the device", required = true)
|
||||||
private int deviceId;
|
private String deviceId;
|
||||||
|
|
||||||
@ApiModelProperty(name = "deviceType", value = "Type of the device", required = true)
|
@ApiModelProperty(name = "deviceType", value = "Type of the device", required = true)
|
||||||
private String deviceType;
|
private String deviceType;
|
||||||
@ -52,11 +52,11 @@ public class DeviceConfiguration {
|
|||||||
@ApiModelProperty(name = "deviceOwner", value = "Owner of the selected device", required = true)
|
@ApiModelProperty(name = "deviceOwner", value = "Owner of the selected device", required = true)
|
||||||
private String deviceOwner;
|
private String deviceOwner;
|
||||||
|
|
||||||
public int getDeviceId() {
|
public String getDeviceId() {
|
||||||
return deviceId;
|
return deviceId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDeviceId(int deviceId) {
|
public void setDeviceId(String deviceId) {
|
||||||
this.deviceId = deviceId;
|
this.deviceId = deviceId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -3352,7 +3352,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv
|
|||||||
List<ConfigurationEntry> configurationEntries,
|
List<ConfigurationEntry> configurationEntries,
|
||||||
String deviceOwner) {
|
String deviceOwner) {
|
||||||
DeviceConfiguration deviceConfiguration = new DeviceConfiguration();
|
DeviceConfiguration deviceConfiguration = new DeviceConfiguration();
|
||||||
deviceConfiguration.setDeviceId(device.getId());
|
deviceConfiguration.setDeviceId(device.getDeviceIdentifier());
|
||||||
deviceConfiguration.setDeviceType(device.getType());
|
deviceConfiguration.setDeviceType(device.getType());
|
||||||
deviceConfiguration.setTenantDomain(tenantDomain);
|
deviceConfiguration.setTenantDomain(tenantDomain);
|
||||||
deviceConfiguration.setConfigurationEntries(configurationEntries);
|
deviceConfiguration.setConfigurationEntries(configurationEntries);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user