com.github.seanroy.annotations.LambduhFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambduh-maven-annotations Show documentation
Show all versions of lambduh-maven-annotations Show documentation
Annotations that can be used to configure your lambda functions in-line.
The newest version!
package com.github.seanroy.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface LambduhFunction {
String runtime() default "Java8";
String functionName();
String description() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy