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

org.swiftsms.model.Message Maven / Gradle / Ivy

Go to download

Contains reusable platform independant code for all SwiftSMS client applications.

The newest version!
package org.swiftsms.model;

import java.util.List;

public class Message {

    private final List recipients;
    private final String message;

    public Message(final List recipients, final String message) {
        this.recipients = recipients;
        this.message = message;
    }

    public List getRecipients() {
        return recipients;
    }

    public String getMessage() {
        return message;
    }

    @Override
    public String toString() {
        return "Message{" +
                "recipients=" + recipients +
                ", message='" + message + '\'' +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy