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

com.ning.api.client.json.ItemResponse 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;

/**
 * @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; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy