Fixed bad merge of metamodel to master
This commit is contained in:
parent
545516328a
commit
2e09b19b8c
|
@ -30,6 +30,7 @@ import javax.persistence.GeneratedValue;
|
||||||
import javax.persistence.Id;
|
import javax.persistence.Id;
|
||||||
import javax.persistence.OneToMany;
|
import javax.persistence.OneToMany;
|
||||||
|
|
||||||
|
import org.hibernate.annotations.SortNatural;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Hardy Ferentschik
|
* @author Hardy Ferentschik
|
||||||
|
@ -41,11 +42,11 @@ public class Printer {
|
||||||
private long id;
|
private long id;
|
||||||
|
|
||||||
@OneToMany
|
@OneToMany
|
||||||
@Sort
|
@SortNatural
|
||||||
private SortedSet<PrintJob> printQueue;
|
private SortedSet<PrintJob> printQueue;
|
||||||
|
|
||||||
@OneToMany
|
@OneToMany
|
||||||
@Sort
|
@SortNatural
|
||||||
private SortedMap<String, PrintJob> printedJobs;
|
private SortedMap<String, PrintJob> printedJobs;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue