io.quarkus.funqy.lambda.FunqyRequestImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Show all versions of quarkus-funqy-amazon-lambda Show documentation
Amazon Lambda Binding for Quarkus Funqy framework
The newest version!
package io.quarkus.funqy.lambda;
import io.quarkus.funqy.runtime.FunqyServerRequest;
import io.quarkus.funqy.runtime.RequestContext;
public class FunqyRequestImpl implements FunqyServerRequest {
protected RequestContext requestContext;
protected Object input;
public FunqyRequestImpl(RequestContext requestContext, Object input) {
this.requestContext = requestContext;
this.input = input;
}
@Override
public RequestContext context() {
return requestContext;
}
@Override
public Object extractInput(Class inputClass) {
return input;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy