mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
23 lines
354 B
Java
23 lines
354 B
Java
package io.ebeaninternal.server.querydefn;
|
|
|
|
public class NaturalKeyBindParam {
|
|
|
|
private final String name;
|
|
|
|
private final Object value;
|
|
|
|
public NaturalKeyBindParam(String name, Object value) {
|
|
this.name = name;
|
|
this.value = value;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public Object getValue() {
|
|
return value;
|
|
}
|
|
|
|
}
|