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

com.centurylink.mdw.dataaccess.PreparedWhere Maven / Gradle / Ivy

There is a newer version: 6.1.39
Show newest version
package com.centurylink.mdw.dataaccess;

public class PreparedWhere {

    private String where;
    public String getWhere() { return where; }

    private Object[] params;
    public Object[] getParams() { return params; }

    public PreparedWhere(String where, Object[] params) {
        this.where = where;
        this.params = params;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy