com.ning.api.client.json.ItemResponse 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;
/**
* @param Type of item contained in response; usually a subtype of
* {@link com.ning.api.client.item.ContentItem}
*/
public class ItemResponse extends ResponseWithResources
{
@JsonProperty
private T entry;
public ItemResponse() { }
public T getEntry() { return entry; }
}