mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Modifying Device bean definition
This commit is contained in:
parent
cdcba23021
commit
de9b17f41f
@ -31,7 +31,7 @@ public class Device {
|
|||||||
private Long dateOfEnrolment;
|
private Long dateOfEnrolment;
|
||||||
private Long dateOfLastUpdate;
|
private Long dateOfLastUpdate;
|
||||||
private String ownership;
|
private String ownership;
|
||||||
private boolean status;
|
private Status status;
|
||||||
private int deviceTypeId;
|
private int deviceTypeId;
|
||||||
private String deviceIdentifier;
|
private String deviceIdentifier;
|
||||||
private String owner;
|
private String owner;
|
||||||
@ -101,11 +101,11 @@ public class Device {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@XmlElement
|
@XmlElement
|
||||||
public boolean isStatus() {
|
public Status getStatus() {
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setStatus(boolean status) {
|
public void setStatus(Status status) {
|
||||||
this.status = status;
|
this.status = status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -126,11 +126,7 @@ public final class DeviceManagementDAOUtil {
|
|||||||
deviceBO.setId(device.getId());
|
deviceBO.setId(device.getId());
|
||||||
deviceBO.setOwner(device.getOwnerId());
|
deviceBO.setOwner(device.getOwnerId());
|
||||||
deviceBO.setOwnership(device.getOwnerShip());
|
deviceBO.setOwnership(device.getOwnerShip());
|
||||||
if (device.getStatus() == Status.ACTIVE) {
|
deviceBO.setStatus(device.getStatus());
|
||||||
deviceBO.setStatus(true);
|
|
||||||
} else if (device.getStatus() == Status.INACTIVE) {
|
|
||||||
deviceBO.setStatus(false);
|
|
||||||
}
|
|
||||||
return deviceBO;
|
return deviceBO;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,12 +137,7 @@ public final class DeviceManagementDAOUtil {
|
|||||||
deviceBO.setName(device.getName());
|
deviceBO.setName(device.getName());
|
||||||
deviceBO.setDateOfEnrollment(device.getDateOfEnrolment());
|
deviceBO.setDateOfEnrollment(device.getDateOfEnrolment());
|
||||||
deviceBO.setDateOfLastUpdate(device.getDateOfLastUpdate());
|
deviceBO.setDateOfLastUpdate(device.getDateOfLastUpdate());
|
||||||
|
deviceBO.setStatus(device.getStatus());
|
||||||
if (!device.isStatus()) {
|
|
||||||
deviceBO.setStatus(Status.INACTIVE);
|
|
||||||
} else {
|
|
||||||
deviceBO.setStatus(Status.ACTIVE);
|
|
||||||
}
|
|
||||||
deviceBO.setOwnerId(device.getOwner());
|
deviceBO.setOwnerId(device.getOwner());
|
||||||
deviceBO.setOwnerShip(device.getOwnership());
|
deviceBO.setOwnerShip(device.getOwnership());
|
||||||
deviceBO.setTenantId(DeviceManagementDAOUtil.getTenantId());
|
deviceBO.setTenantId(DeviceManagementDAOUtil.getTenantId());
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user