com.ning.api.client.item.Activity 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 java.net.URI;
import org.codehaus.jackson.annotate.JsonProperty;
public class Activity extends ContentItemBase
{
// Base class includes standard ones: id, author, createdDate
@JsonProperty protected String type;
@JsonProperty protected Key> contentId;
@JsonProperty protected URI url;
@JsonProperty protected String title;
@JsonProperty protected String description;
@JsonProperty protected Key> attachedTo;
@JsonProperty protected String attachedToType;
@JsonProperty protected Key attachedToAuthor;
public Activity() { }
public String getType() { return type; }
public Key> getContentId() { return contentId; }
public URI getUrl() { return url; }
public String getTitle() { return title; }
public String getDescription() { return description; }
public Key> getAttachedTo() { return attachedTo; }
public String getAttachedToType() { return attachedToType; }
public Key getAttachedToAuthor() { return attachedToAuthor; }
}