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

cloud.localstack.lambda_handler.HandlerNameParseResult Maven / Gradle / Ivy

There is a newer version: 0.2.23
Show newest version
package cloud.localstack.lambda_handler;

public class HandlerNameParseResult {
    private final String className;
    private final String handlerMethod;

    public HandlerNameParseResult(String className, String handlerMethod) {
        this.className = className;
        this.handlerMethod = handlerMethod;
    }

    public String getClassName() {
        return className;
    }

    public String getHandlerMethod() {
        return handlerMethod;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy