~raginggoblin/infolog/infolog

« back to all changes in this revision

Viewing changes to InfologServer/lib/hibernate-annotations-3.4.0.GA/test/org/hibernate/test/annotations/idmanytoone/alphabetical/Droitacces.java

  • Committer: Raging Goblin
  • Date: 2013-11-16 16:51:32 UTC
  • Revision ID: raging_goblin-20131116165132-weujnptzc88uy4ah
Mavenized the project, now using shared project InfologSync

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//$
2
 
package org.hibernate.test.annotations.idmanytoone.alphabetical;
3
 
 
4
 
import java.math.BigInteger;
5
 
 
6
 
import javax.persistence.Entity;
7
 
import javax.persistence.Id;
8
 
import javax.persistence.ManyToOne;
9
 
 
10
 
@Entity
11
 
public class Droitacces {
12
 
        @Id
13
 
        private BigInteger idpk;
14
 
 
15
 
        @ManyToOne
16
 
        private Benefserv idpkbenef;
17
 
}