com.kenshoo.pl.entity.PairUniqueKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of persistence-layer Show documentation
Show all versions of persistence-layer Show documentation
A Java persistence layer based on JOOQ for high performance and business flow support.
package com.kenshoo.pl.entity;
public class PairUniqueKeyValue, T1, T2> extends UniqueKeyValue {
public PairUniqueKeyValue(PairUniqueKey uniqueKey, T1 v1, T2 v2) {
super(uniqueKey, new Object[]{v1, v2});
}
public PairUniqueKeyValue(EntityField field1, EntityField field2, T1 v1, T2 v2) {
super(new PairUniqueKey<>(field1, field2), new Object[]{v1, v2});
}
}