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

com.genexus.cloud.serverless.aws.handler.LambdaFunctionConfiguration Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.6.8
Show newest version
package com.genexus.cloud.serverless.aws.handler;

import com.fasterxml.jackson.annotation.JsonProperty;

public class LambdaFunctionConfiguration {

	@JsonProperty("entryPointClassName")
	private String entryPointClassName = null;

	public LambdaFunctionConfiguration() {

	}
	public LambdaFunctionConfiguration(String entryPointClassName) {
		this.entryPointClassName = entryPointClassName;
	}

	public String getEntryPointClassName() {
		return entryPointClassName;
	}

	public void setEntryPointClassName(String entryPointClassName) {
		this.entryPointClassName = entryPointClassName;
	}

	public boolean isValidConfiguration () {
		return getEntryPointClassName() != null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy