adding active-filter if not null

This commit is contained in:
dashevchenko 2024-12-02 18:02:17 +02:00
parent 3b491c978f
commit 7b21a1fde5

View File

@ -1359,11 +1359,14 @@ public class RestClient implements Closeable {
public PageData<DeviceInfo> getTenantDeviceInfos(String type, Boolean active, DeviceProfileId deviceProfileId, PageLink pageLink) {
Map<String, String> params = new HashMap<>();
params.put("type", type);
params.put("active", active != null ? active.toString() : null);
params.put("deviceProfileId", deviceProfileId != null ? deviceProfileId.toString() : null);
if (active != null) {
params.put("active", active.toString());
}
addPageLinkToParam(params, pageLink);
return restTemplate.exchange(
baseURL + "/api/tenant/deviceInfos?type={type}&active={active}&deviceProfileId={deviceProfileId}&" + getUrlParams(pageLink),
baseURL + "/api/tenant/deviceInfos?type={type}&deviceProfileId={deviceProfileId}&"
+ (active != null ? "active={active}&" : "") + getUrlParams(pageLink),
HttpMethod.GET, HttpEntity.EMPTY,
new ParameterizedTypeReference<PageData<DeviceInfo>>() {
}, params).getBody();