
com.ning.api.client.json.ResponseWithResources Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ning-api-java Show documentation
Show all versions of ning-api-java Show documentation
Java client library for accessing Ning external API
package com.ning.api.client.json;
import org.codehaus.jackson.JsonNode;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* Intermediate response type class for responses that can contain
* associated "sub-resources". This currently contains all response types
* except simple count query responses.
*/
public class ResponseWithResources extends XapiResponse
{
@JsonProperty
protected JsonNode resources;
public ResponseWithResources() { }
public JsonNode getResources() { return resources; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy