mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
16 lines
281 B
Java
16 lines
281 B
Java
package io.ebeaninternal.api;
|
|
|
|
/**
|
|
* A property value pair in a natural key lookup.
|
|
*/
|
|
public class NaturalKeyEq {
|
|
|
|
final String property;
|
|
final Object value;
|
|
|
|
public NaturalKeyEq(String property, Object value) {
|
|
this.property = property;
|
|
this.value = value;
|
|
}
|
|
}
|