All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.persistence.testsuite.entity.IndexedEmbeddable 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 IndexedEmbeddable {

    @Column(length = 10)
    private String value;
    @Column(length = 10)
    private String value2;

    public IndexedEmbeddable() {
    }

    public IndexedEmbeddable(String value, String value2) {
        this.value = value;
        this.value2 = value2;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy