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

moxproxy.model.MoxProxyStatusResponse Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package moxproxy.model;

public class MoxProxyStatusResponse {

    private String entityId;
    private String message;

    public String getMessage() {
        return message;
    }

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

    public String getEntityId() {
        return entityId;
    }

    public void setEntityId(String entityId) {
        this.entityId = entityId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy