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

com.blazebit.persistence.testsuite.entity.EmbeddableTestEntityNestedEmbeddable Maven / Gradle / Ivy

The newest version!
package com.blazebit.persistence.testsuite.entity;

import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;

import javax.persistence.Embeddable;
import javax.persistence.OneToMany;

@Embeddable
public class EmbeddableTestEntityNestedEmbeddable implements Serializable {
    private static final long serialVersionUID = 1L;
    
    private Set nestedOneToMany = new HashSet();

    @OneToMany
    public Set getNestedOneToMany() {
        return nestedOneToMany;
    }
    
    public void setNestedOneToMany(Set nestedOneToMany) {
        this.nestedOneToMany = nestedOneToMany;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy