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

com.gs.dmn.transformation.FunctionResource Maven / Gradle / Ivy

There is a newer version: 8.7.3
Show newest version
package com.gs.dmn.transformation;

public class FunctionResource {
    private final String functionName;
    private final String codeUri;
    private final String handler;
    private final String restPath;

    public FunctionResource(String functionName, String codeUri, String handler, String restPath) {
        this.functionName = functionName;
        this.codeUri = codeUri;
        this.handler = handler;
        this.restPath = restPath;
    }

    public String getFunctionName() {
        return functionName;
    }

    public String getCodeUri() {
        return codeUri;
    }

    public String getHandler() {
        return handler;
    }

    public String getRestPath() {
        return restPath;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy