Example usage for org.hibernate.collection.spi PersistentCollection interface-usage

List of usage examples for org.hibernate.collection.spi PersistentCollection interface-usage

Introduction

In this page you can find the example usage for org.hibernate.collection.spi PersistentCollection interface-usage.

Usage

From source file org.babyfish.hibernate.collection.spi.PersistentCollection.java

/**
 * @author Tao Chen
 */
public interface PersistentCollection<E> extends org.hibernate.collection.spi.PersistentCollection, Serializable {

    String getNonNullRole();

From source file org.jboss.as.hibernate.test.MyPersistentCollection.java

public class MyPersistentCollection implements PersistentCollection {

    @Override
    public Object getOwner() {
        return null;
    }