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