com.github.dikhan.pagerduty.client.events.utils.JsonUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pagerduty-client Show documentation
Show all versions of pagerduty-client Show documentation
Simple Java PagerDuty client with full integration with PagerDuty Events APIs
package com.github.dikhan.pagerduty.client.events.utils;
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.JsonNode;
public class JsonUtils {
public static String getPropertyValue(HttpResponse jsonResponse, String key) {
return jsonResponse.getBody().getObject().getString(key);
}
public static String getArrayValue(HttpResponse jsonResponse, String key) {
return jsonResponse.getBody().getObject().getJSONArray(key).toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy