Merge branch 'traccar' into 'master'

Add traccar changes

See merge request entgra/carbon-device-mgt-plugins!194
master
Shamalka Navod 2 years ago
commit 00838aa2e7

@ -133,5 +133,5 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>

@ -140,6 +140,11 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
return null; return null;
} }
@Override
public PaginationResult getAllDevicesIds(PaginationRequest paginationRequest) throws DeviceManagementException {
return null;
}
@Override @Override
public PaginationResult getAllDevices(PaginationRequest paginationRequest, boolean b) public PaginationResult getAllDevices(PaginationRequest paginationRequest, boolean b)
throws DeviceManagementException { throws DeviceManagementException {
@ -156,6 +161,11 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
return null; return null;
} }
@Override
public PaginationResult getAllDevicesIdList(PaginationRequest paginationRequest) throws DeviceManagementException {
return null;
}
@Override @Override
public Device getDevice(DeviceIdentifier deviceIdentifier) throws DeviceManagementException { public Device getDevice(DeviceIdentifier deviceIdentifier) throws DeviceManagementException {
if (TestUtils.getDeviceId().equals(deviceIdentifier.getId())) { if (TestUtils.getDeviceId().equals(deviceIdentifier.getId())) {

Loading…
Cancel
Save