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

crawlers.json.MultipleArticlesResponse Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package crawlers.json;

import java.util.List;

/**
 *
 * @author zua
 */
public class MultipleArticlesResponse {
    
    private String status;
    private String source;
    private String sortBy;
    private List articles;

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public String getSource() {
        return source;
    }

    public void setSource(String source) {
        this.source = source;
    }

    public String getSortBy() {
        return sortBy;
    }

    public void setSortBy(String sortBy) {
        this.sortBy = sortBy;
    }

    public List getArticles() {
        return articles;
    }

    public void setArticles(List articles) {
        this.articles = articles;
    }

    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy