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

com.silanis.esl.sdk.CompletionReport Maven / Gradle / Ivy

The newest version!
package com.silanis.esl.sdk;

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

/**
 * Created by lena on 2014-05-27.
 */
public class CompletionReport {

    private Date from;
    private Date to;
    private List senders = new ArrayList();

    public CompletionReport() {
    }

    public Date getFrom() {
        return from;
    }

    public void setFrom(Date from) {
        this.from = from;
    }

    public Date getTo() {
        return to;
    }

    public void setTo(Date to) {
        this.to = to;
    }

    public List getSenders() {
        return senders;
    }

    public void setSenders(List senders) {
        this.senders = senders;
    }

    public void addSender(SenderCompletionReport sender) {
        this.senders.add(sender);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy