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

com.runsidekick.broker.model.response.Response Maven / Gradle / Ivy

package com.runsidekick.broker.model.response;

/**
 * @author serkan.ozal
 */
public interface Response {

    default String getType() {
        return "Response";
    }

    default String getSource() {
        return "Broker";
    }

    String getName();

    String getRequestId();

    boolean isErroneous();

    int getErrorCode();

    String getErrorMessage();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy