
org.swiftsms.tasks.results.OperationResult 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.tasks.results;
import org.swiftsms.tasks.Status;
/**
* Notifications for ICC Activities
*
* @author Rob Powell
*/
public abstract class OperationResult {
private final String message;
private final Status status;
private final int colourResource;
public OperationResult(final String message, final int colourResource, final Status status) {
this.message = message;
this.colourResource = colourResource;
this.status = status;
}
public String getMessage() {
return this.message;
}
public Status getStatus() {
return this.status;
}
public int getColourResource() {
return this.colourResource;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy