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

com.runsidekick.broker.model.request.Request Maven / Gradle / Ivy

package com.runsidekick.broker.model.request;

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

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

    String getName();

    String getId();

    String getClient();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy