source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/hibernate/domaine/Lienpersonne.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 1.1 KB
RevLine 
[68]1package org.medias.eccad.persistance.hibernate.domaine;
2
3// Generated 1 Juin 2007 15:03:29 by Hibernate Tools 3.2.0.beta7
4
5/**
6 * Lienpersonne generated by hbm2java
7 */
8public class Lienpersonne implements java.io.Serializable {
9
10        // Fields   
11
12        /**
13         *
14         */
15        private static final long serialVersionUID = -7648845459637589147L;
16
17        private LienpersonneId id;
18
19        private Metadata metadata;
20
21        private Personne personne;
22
23        // Constructors
24
25        /** default constructor */
26        public Lienpersonne() {
27        }
28
29        /** full constructor */
30        public Lienpersonne(LienpersonneId id, Metadata metadata, Personne personne) {
31                this.id = id;
32                this.metadata = metadata;
33                this.personne = personne;
34        }
35
36        public String toString() {
37                return personne.toString();
38        }
39       
40        // Property accessors
41        public LienpersonneId getId() {
42                return this.id;
43        }
44
45        public void setId(LienpersonneId id) {
46                this.id = id;
47        }
48
49        public Metadata getMetadata() {
50                return this.metadata;
51        }
52
53        public void setMetadata(Metadata metadata) {
54                this.metadata = metadata;
55        }
56
57        public Personne getPersonne() {
58                return this.personne;
59        }
60
61        public void setPersonne(Personne personne) {
62                this.personne = personne;
63        }
64
65}
Note: See TracBrowser for help on using the repository browser.