rest client improvements

This commit is contained in:
YevhenBondarenko 2023-08-18 18:02:58 +02:00
parent ada9ff7b4e
commit f11dd01d97

View File

@ -499,9 +499,9 @@ public class RestClient implements Closeable {
return restTemplate.postForEntity(baseURL + "/api/alarm", alarm, Alarm.class).getBody();
}
public List<EntitySubtype> getAlarmTypes() {
public List<EntitySubtype> getAlarmTypes(PageLink pageLink) {
return restTemplate.exchange(
baseURL + "/api/alarm/types",
baseURL + "/api/alarm/types?" + getUrlParams(pageLink),
HttpMethod.GET,
HttpEntity.EMPTY,
new ParameterizedTypeReference<List<EntitySubtype>>() {