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

io.quarkus.gcp.functions.GoogleCloudFunctionInfo Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.gcp.functions;

public class GoogleCloudFunctionInfo {
    private String beanName;
    private String className;
    private FunctionType functionType;

    public String getBeanName() {
        return beanName;
    }

    public void setBeanName(String beanName) {
        this.beanName = beanName;
    }

    public String getClassName() {
        return className;
    }

    public void setClassName(String className) {
        this.className = className;
    }

    public FunctionType getFunctionType() {
        return functionType;
    }

    public void setFunctionType(FunctionType functionType) {
        this.functionType = functionType;
    }

    public enum FunctionType {
        HTTP,
        BACKGROUND,
        RAW_BACKGROUND,
        CLOUD_EVENT
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy