1
2
3
4
5 package ch.ledcom.hephaistos.dao;
6
7 import java.net.URL;
8 import java.util.Collections;
9 import java.util.Set;
10
11 /***
12 * <p>
13 *
14 * </p>
15 */
16 public class Enterprise {
17
18
19
20
21 private String society;
22
23 private String activityDomain;
24
25 private String address;
26
27 private String npa;
28
29 private String locality;
30
31 private String telProf;
32
33 private String telPriv;
34
35 private String telMobile;
36
37 private String fax;
38
39 private String email;
40
41 private URL webSite;
42
43 private Boolean supplier;
44
45 private Boolean manufacturer;
46
47
48
49
50 private Set suppliedProducts = Collections.EMPTY_SET;
51
52 private Set manufacturedProducts = Collections.EMPTY_SET;
53
54 }
55