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

fun.langel.cql.invoke.ExecutionContext Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.invoke;

import fun.langel.cql.parameter.Parameter;

import java.util.List;

/**
 * @author [email protected](GuHan)
 * @since 2022/5/17 22:02
 **/
public class ExecutionContext {

    private String origin;

    private List parameters;

    private String parameterized;

    public ExecutionContext(final String sql) {
        this.origin = sql;

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy