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