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

com.testdroid.api.APIMessage Maven / Gradle / Ivy

The newest version!
package com.testdroid.api;

/**
 * @author Michał Szpruta 
 */
public class APIMessage {

    private String message;

    public APIMessage() {
    }

    public APIMessage(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy