io.jaspercloud.react.mono.invoke.InvokeRequest Maven / Gradle / Ivy
package io.jaspercloud.react.mono.invoke;
import io.jaspercloud.react.mono.AsyncMono;
public class InvokeRequest {
private K key;
private AsyncMono route;
public K getKey() {
return key;
}
public AsyncMono getRoute() {
return route;
}
public InvokeRequest(K key, AsyncMono route) {
this.key = key;
this.route = route;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy