mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
18 lines
320 B
Java
18 lines
320 B
Java
package io.ebeaninternal.api;
|
|
|
|
/**
|
|
* An entry for natural key lookup.
|
|
*/
|
|
public interface NaturalKeyEntry {
|
|
|
|
/**
|
|
* Return the natural cache key (String concatenation of values).
|
|
*/
|
|
String key();
|
|
|
|
/**
|
|
* Return the inValue (used to remove from IN clause of original query).
|
|
*/
|
|
Object getInValue();
|
|
}
|