cloud.localstack.lambda_handler.HandlerNameParseResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
The 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;
}
}