Example usage for org.hibernate.annotations SortType UNSORTED

List of usage examples for org.hibernate.annotations SortType UNSORTED

Introduction

In this page you can find the example usage for org.hibernate.annotations SortType UNSORTED.

Prototype

SortType UNSORTED

To view the source code for org.hibernate.annotations SortType UNSORTED.

Click Source Link

Document

The collection is unsorted.

Usage

From source file:it.cilea.osd.jdyna.web.Box.java

License:Open Source License

/**
 * Get field to show on the box.
 *
 * @return containables list to show
 */
@Transient
@Sort(type = SortType.UNSORTED)
public abstract List<C> getMask();

From source file:it.cilea.osd.jdyna.web.Tab.java

License:Open Source License

/**
 * Get the list of box included in this tab
 * /*from   w w  w . j  a  v a  2  s. co  m*/
 * @return the list of box included in this tab
 */
@Transient
@Sort(type = SortType.UNSORTED)
public abstract List<H> getMask();

From source file:ru.runa.wfe.user.Profile.java

License:Open Source License

@OneToMany(targetEntity = BatchPresentation.class, fetch = FetchType.EAGER)
@Sort(type = SortType.UNSORTED)
@JoinColumn(name = "PROFILE_ID")
@ForeignKey(name = "FK_BATCH_PRESENTATION_PROFILE")
@Index(name = "IX_BATCH_PRESENTATION_PROFILE")
@Cascade({ CascadeType.ALL, CascadeType.DELETE_ORPHAN })
public Set<BatchPresentation> getBatchPresentations() {
    return batchPresentations;
}