org.n3r.eql.cache.EqlCacheKey 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.cache;
import lombok.Value;
import org.n3r.eql.EqlPage;
import org.n3r.eql.impl.EqlUniqueSqlId;
@Value
public class EqlCacheKey {
private EqlUniqueSqlId uniqueSQLId;
private Object[] params;
private Object[] dynamics;
private EqlPage page;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy