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

net.anotheria.anosite.blog.api.BlogAO Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package net.anotheria.anosite.blog.api;

import java.io.Serializable;
import java.util.List;

/**
 * BLog API object.
 * @author vbezuhlyi
 */
public class BlogAO implements Serializable {

    /**
     * Basic serial version UID.
     */
    private static final long serialVersionUID = -704571748142347691L;

    private List posts;


    public BlogAO(List posts) {
        this.posts = posts;
    }


    public List getPosts() {
        return posts;
    }

    public void setPosts(List postBeans) {
        this.posts = postBeans;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy