]> git.mxchange.org Git - jfinancials-lib.git/blob - src/org/mxchange/addressbook/model/addressbook/entry/UserAddressbookEntry.java
Continued:
[jfinancials-lib.git] / src / org / mxchange / addressbook / model / addressbook / entry / UserAddressbookEntry.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.addressbook.model.addressbook.entry;
18
19 import java.util.Calendar;
20 import java.util.List;
21 import javax.persistence.Basic;
22 import javax.persistence.CascadeType;
23 import javax.persistence.Column;
24 import javax.persistence.Entity;
25 import javax.persistence.GeneratedValue;
26 import javax.persistence.GenerationType;
27 import javax.persistence.Id;
28 import javax.persistence.JoinColumn;
29 import javax.persistence.ManyToOne;
30 import javax.persistence.OneToOne;
31 import javax.persistence.Table;
32 import javax.persistence.Temporal;
33 import javax.persistence.TemporalType;
34 import org.mxchange.addressbook.model.addressbook.Addressbook;
35 import org.mxchange.addressbook.model.addressbook.UserAddressbook;
36 import org.mxchange.jcontacts.contact.Contact;
37 import org.mxchange.jcontacts.contact.UserContact;
38 import org.mxchange.jcontactsbusiness.BusinessContact;
39 import org.mxchange.jcontactsbusiness.CompanyContact;
40 import org.mxchange.jusercore.model.user.LoginUser;
41 import org.mxchange.jusercore.model.user.User;
42
43 /**
44  * A POJO for address book entries
45  * <p>
46  * @author Roland Haeder
47  */
48 @Entity (name = "addressbook_entries")
49 @Table (name = "addressbook_entries")
50 public class UserAddressbookEntry implements AddressbookEntry, Comparable<AddressbookEntry> {
51
52         /**
53          * Serial number
54          */
55         private static final long serialVersionUID = 178_581_768_581_960L;
56
57         /**
58          * Id number
59          */
60         @Id
61         @GeneratedValue (strategy = GenerationType.IDENTITY)
62         @Column (name = "addressbook_entry_id", nullable = false, updatable = false)
63         private Long addressbookEntryId;
64
65         /**
66          * When this address book entry has been created
67          */
68         @Basic (optional = false)
69         @Temporal (TemporalType.TIMESTAMP)
70         @Column (name = "addressbook_entry_created", nullable = false, updatable = false)
71         private Calendar addressbookEntryCreated;
72
73         /**
74          * Connection to table "addressbooks"
75          */
76         @JoinColumn (name = "addressbook_id", nullable = false, updatable = false)
77         @OneToOne (targetEntity = UserAddressbook.class, optional = false, cascade = CascadeType.ALL)
78         private Addressbook addressbookId;
79
80         /**
81          * Connection to table "users" (who has initially created this entry
82          */
83         @JoinColumn (name = "addressbook_entry_origin_user_id", nullable = false, updatable = false)
84         @ManyToOne (targetEntity = LoginUser.class, optional = false, cascade = CascadeType.ALL)
85         private List<User> addressbookEntryUserOriginList;
86
87         /**
88          * Connection to table "users" (who has added this entry)
89          */
90         @JoinColumn (name = "addressbook_entry_added_user_id", updatable = false)
91         @ManyToOne (targetEntity = LoginUser.class, cascade = CascadeType.ALL)
92         private List<User> addressbookEntryUserAddedList;
93
94         /**
95          * Connection to table "contacts" (private contacts)
96          */
97         @JoinColumn (name = "addressbook_entry_private_contact_id", updatable = false)
98         @OneToOne (targetEntity = UserContact.class, cascade = CascadeType.ALL)
99         private Contact addressbookEntryPrivateContact;
100
101         /**
102          * Connection to table "business_contacts" (commercial contacts)
103          */
104         @JoinColumn (name = "addressbook_entry_business_contact_id", updatable = false)
105         @OneToOne (targetEntity = CompanyContact.class, cascade = CascadeType.ALL)
106         private BusinessContact addressbookEntryBusinessContact;
107
108         @Override
109         public int compareTo (final AddressbookEntry addressbookEntry) {
110                 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
111         }
112
113         @Override
114         public BusinessContact getAddressbookEntryBusinessContact () {
115                 return this.addressbookEntryBusinessContact;
116         }
117
118         @Override
119         public void setAddressbookEntryBusinessContact (final BusinessContact addressbookEntryBusinessContact) {
120                 this.addressbookEntryBusinessContact = addressbookEntryBusinessContact;
121         }
122
123         @Override
124         public Calendar getAddressbookEntryCreated () {
125                 return this.addressbookEntryCreated;
126         }
127
128         @Override
129         public void setAddressbookEntryCreated (final Calendar addressbookEntryCreated) {
130                 this.addressbookEntryCreated = addressbookEntryCreated;
131         }
132
133         @Override
134         public Long getAddressbookEntryId () {
135                 return this.addressbookEntryId;
136         }
137
138         @Override
139         public void setAddressbookEntryId (final Long addressbookEntryId) {
140                 this.addressbookEntryId = addressbookEntryId;
141         }
142
143         @Override
144         public Contact getAddressbookEntryPrivateContact () {
145                 return this.addressbookEntryPrivateContact;
146         }
147
148         @Override
149         public void setAddressbookEntryPrivateContact (final Contact addressbookEntryPrivateContact) {
150                 this.addressbookEntryPrivateContact = addressbookEntryPrivateContact;
151         }
152
153         @Override
154         public List<User> getAddressbookEntryUserAddedList () {
155                 return this.addressbookEntryUserAddedList;
156         }
157
158         @Override
159         public void setAddressbookEntryUserAddedList (final List<User> addressbookEntryUserAddedList) {
160                 this.addressbookEntryUserAddedList = addressbookEntryUserAddedList;
161         }
162
163         @Override
164         public List<User> getAddressbookEntryUserOriginList () {
165                 return this.addressbookEntryUserOriginList;
166         }
167
168         @Override
169         public void setAddressbookEntryUserOriginList (final List<User> addressbookEntryUserOriginList) {
170                 this.addressbookEntryUserOriginList = addressbookEntryUserOriginList;
171         }
172
173         @Override
174         public Addressbook getAddressbookId () {
175                 return this.addressbookId;
176         }
177
178         @Override
179         public void setAddressbookId (final Addressbook addressbookId) {
180                 this.addressbookId = addressbookId;
181         }
182
183 }