com.ning.api.client.json.XapiResponse 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.annotate.JsonProperty;
/**
* Base class for all response types: the only commonality is the
* response code, which is contained here.
*/
public class XapiResponse
{
@JsonProperty
private String success;
protected XapiResponse() { }
public String getSuccess() { return success; }
}