com.nfbsoftware.sansserverplugin.sdk.lambda.ILambdaFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sans-server-plugin Show documentation
Show all versions of sans-server-plugin Show documentation
The NFB Software SansServer-Plugin serves two purposes, one as a development SDK and the other as a Maven plugin to build, provision, and deploy SansServer-based applications.
package com.nfbsoftware.sansserverplugin.sdk.lambda;
import com.nfbsoftware.sansserverplugin.sdk.lambda.model.HandlerResponse;
/**
* The ILambdaFunction interface...
*
* @author Brendan Clemenzi
*/
public interface ILambdaFunction
{
public HandlerResponse processRequest() throws Exception;
}