
org.swiftsms.model.Message Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
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