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

com.ning.api.client.item.Activity Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy