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

mServer.crawler.sender.wdr.WdrSendungDto Maven / Gradle / Ivy

There is a newer version: 3.1.64
Show newest version
package mServer.crawler.sender.wdr;

import java.util.ArrayList;
import java.util.List;

public class WdrSendungDto {

    private String theme;
    private final List videoUrls;
    private final List overviewUrls;

    public WdrSendungDto() {
        videoUrls = new ArrayList<>();
        overviewUrls = new ArrayList<>();
    }
    
    public String getTheme() {
        return theme;
    }
    
    public void setTheme(String aTheme) {
        theme = aTheme;
    }

    public List getOverviewUrls() {
        return overviewUrls;
    }
    
    public void addOverviewUrls(String aUrl) {
        if(aUrl != null && !aUrl.isEmpty()) {
            overviewUrls.add(aUrl);
        }
    }
    
    public List getVideoUrls() {
        return videoUrls;
    }
    
    public void addVideoUrl(String aUrl) {
        if(aUrl != null && !aUrl.isEmpty()) {
            videoUrls.add(aUrl);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy