com.ning.api.client.item.ContentItem 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.item;
import org.joda.time.DateTime;
/**
* Shared base class for all types of content items.
*
* @author tatu
*/
public interface ContentItem,
T extends ContentItem>
{
public Key id();
public DateTime getCreatedDate();
public String getAuthor();
}