org.n3r.eql.codedesc.CodeDesc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.codedesc;
import lombok.Value;
import org.n3r.eql.spec.Spec;
@Value
public class CodeDesc {
private final String columnName;
private final Spec spec;
public String getDescLabel() {
return spec.getName();
}
public String[] getParams() {
return spec.getParams();
}
}