
com.blazebit.persistence.testsuite.entity.KeyedEmbeddable Maven / Gradle / Ivy
The newest version!
package com.blazebit.persistence.testsuite.entity;
import javax.persistence.Column;
import javax.persistence.Embeddable;
/**
*
* @author Moritz Becker
* @since 1.2.0
*/
@Embeddable
public class KeyedEmbeddable {
@Column(length = 10)
private String value;
@Column(length = 10)
private String value2;
public KeyedEmbeddable() {
}
public KeyedEmbeddable(String value, String value2) {
this.value = value;
this.value2 = value2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy