![JAR search and dependency download from the Maven repository](/logo.png)
org.compass.gps.device.ibatis.SqlMapIndexEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compass Show documentation
Show all versions of compass Show documentation
Compass Search Engine Framework
package org.compass.gps.device.ibatis;
import org.compass.gps.device.support.parallel.GenericIndexEntity;
/**
* @author kimchy
*/
public class SqlMapIndexEntity extends GenericIndexEntity {
private String statementId;
private Object param;
public SqlMapIndexEntity(String name, String[] subIndexes, String statementId, Object param) {
super(name, subIndexes);
this.statementId = statementId;
this.param = param;
}
public String getStatementId() {
return statementId;
}
public Object getParam() {
return param;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy