All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ning.api.client.json.XapiResponse Maven / Gradle / Ivy

There is a newer version: 0.5.1
Show newest version
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; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy