]> git.mxchange.org Git - jcontacts-business-core.git/blob - src/org/mxchange/jcontactsbusiness/basicdata/BusinessBasicData.java
No more list for multiple company main numbers, only one is fine
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / basicdata / BusinessBasicData.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.jcontactsbusiness.basicdata;
18
19 import java.io.Serializable;
20 import org.mxchange.jcontactsbusiness.logo.BusinessLogo;
21 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
22 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
23
24 /**
25  * A POJI for basic business data
26  * <p>
27  * @author Roland Haeder
28  */
29 public interface BusinessBasicData extends Serializable {
30
31         /**
32          * Getter for id number
33          * <p>
34          * @return Id number
35          */
36         Long getCompanyBasicId ();
37
38         /**
39          * Setter for id number
40          * <p>
41          * @param companyBasicId Id number
42          */
43         void setCompanyBasicId (final Long companyBasicId);
44
45         /**
46          * Getter for comments
47          * <p>
48          * @return Comments
49          */
50         String getCompanyComments ();
51
52         /**
53          * Setter for comments
54          * <p>
55          * @param companyComments Comments
56          */
57         void setCompanyComments (final String companyComments);
58
59         /**
60          * Getter for email address
61          * <p>
62          * @return Email address
63          */
64         String getCompanyEmailAddress ();
65
66         /**
67          * Setter for email address
68          * <p>
69          * @param companyEmailAddress Email address
70          */
71         void setCompanyEmailAddress (final String companyEmailAddress);
72
73         /**
74          * Getter for list of fax number
75          * <p>
76          * @return Fax numbers
77          */
78         DialableFaxNumber getCompanyFaxNumber ();
79
80         /**
81          * Setter for list of fax number
82          * <p>
83          * @param companyFaxNumber Fax numbers
84          */
85         void setCompanyFaxNumber (final DialableFaxNumber companyFaxNumber);
86
87         /**
88          * Getter for legal status
89          * <p>
90          * @return Legal status
91          */
92         String getCompanyLegalStatus ();
93
94         /**
95          * Setter for legal status
96          * <p>
97          * @param companyLegalStatus Legal status
98          */
99         void setCompanyLegalStatus (final String companyLegalStatus);
100
101         /**
102          * Getter for company logo
103          * <p>
104          * @return Company logo
105          */
106         BusinessLogo getCompanyLogo ();
107
108         /**
109          * Setter for company logo
110          * <p>
111          * @param companyLogo Company logo
112          */
113         void setCompanyLogo (final BusinessLogo companyLogo);
114
115         /**
116          * Getter for company name
117          * <p>
118          * @return Company name
119          */
120         String getCompanyName ();
121
122         /**
123          * Setter for company name
124          * <p>
125          * @param companyName Company name
126          */
127         void setCompanyName (final String companyName);
128
129         /**
130          * Getter for list of phone number
131          * <p>
132          * @return Phone numbers
133          */
134         DialableLandLineNumber getCompanyPhoneNumber ();
135
136         /**
137          * Setter for list of phone number
138          * <p>
139          * @param companyPhoneNumber Phone numbers
140          */
141         void setCompanyPhoneNumber (final DialableLandLineNumber companyPhoneNumber);
142
143         /**
144          * Getter for tax number
145          * <p>
146          * @return Tax number
147          */
148         String getCompanyTaxNumber ();
149
150         /**
151          * Setter for tax number
152          * <p>
153          * @param companyTaxNumber Tax number
154          */
155         void setCompanyTaxNumber (final String companyTaxNumber);
156
157         /**
158          * Getter for website URL
159          * <p>
160          * @return Website URL
161          */
162         String getCompanyWebsiteUrl ();
163
164         /**
165          * Setter for website URL
166          * <p>
167          * @param companyWebsiteUrl Website URL
168          */
169         void setCompanyWebsiteUrl (final String companyWebsiteUrl);
170
171         @Override
172         boolean equals (final Object object);
173
174         @Override
175         int hashCode ();
176 }