mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Bump device mgt core release version to 5.2.4
This commit is contained in:
parent
c0cffeefcf
commit
5675841f02
@ -48,6 +48,7 @@ import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.Configurati
|
||||
import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.DeviceConfiguration;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.device.details.DeviceData;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.device.details.DeviceLocationHistorySnapshot;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.exceptions.ConflictException;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.exceptions.DeviceManagementException;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.EnrolmentInfo;
|
||||
import io.entgra.device.mgt.core.device.mgt.common.FeatureManager;
|
||||
@ -926,17 +927,17 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
||||
}
|
||||
|
||||
@Override
|
||||
public OwnerWithDeviceDTO getOwnersWithDeviceIds(String s) throws DeviceManagementDAOException {
|
||||
public OwnerWithDeviceDTO getOwnersWithDeviceIds(String s, int i, String s1, String s2, String s3) throws DeviceManagementDAOException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public OwnerWithDeviceDTO getOwnerWithDeviceByDeviceId(int i) throws DeviceManagementDAOException {
|
||||
public OwnerWithDeviceDTO getOwnerWithDeviceByDeviceId(int i, String s, String s1, String s2) throws DeviceManagementDAOException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<DeviceDetailsDTO> getDevicesByTenantId(int i) throws DeviceManagementDAOException {
|
||||
public List<DeviceDetailsDTO> getDevicesByTenantId(int i, int i1, String s, String s1) throws DeviceManagementDAOException {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@ -944,4 +945,44 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
||||
public OperationDTO getOperationDetailsById(int i) throws OperationManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PaginationResult getDevicesNotInGroup(PaginationRequest paginationRequest, boolean b) throws DeviceManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Device updateDeviceName(Device device, String s, String s1) throws DeviceManagementException, DeviceNotFoundException, ConflictException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Integer> getDevicesNotInGivenIdList(List<Integer> list) throws DeviceManagementException {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Integer> getDevicesInGivenIdList(List<Integer> list) throws DeviceManagementException {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getDeviceCountNotInGivenIdList(List<Integer> list) throws DeviceManagementException {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDevicesByDeviceIds(PaginationRequest paginationRequest, List<Integer> list) throws DeviceManagementException {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getDeviceCountByDeviceIds(PaginationRequest paginationRequest, List<Integer> list) throws DeviceManagementException {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Integer> getDeviceIdsByStatus(List<String> list) throws DeviceManagementException {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
||||
2
pom.xml
2
pom.xml
@ -1166,7 +1166,7 @@
|
||||
<properties>
|
||||
|
||||
<!-- Carbon Device Management -->
|
||||
<io.entgra.device.mgt.core.version>5.1.1-SNAPSHOT</io.entgra.device.mgt.core.version>
|
||||
<io.entgra.device.mgt.core.version>5.2.4</io.entgra.device.mgt.core.version>
|
||||
<io.entgra.device.mgt.core.version.range>[5.0.0, 6.0.0)</io.entgra.device.mgt.core.version.range>
|
||||
|
||||
<!-- Carbon Device Management Plugins -->
|
||||
|
||||
Loading…
Reference in New Issue
Block a user