]> git.mxchange.org Git - jfinancials-war.git/blob
8822ce0ca9e6b3b9caebc6d01d9e8e472fc51c82
[jfinancials-war.git] /
1 /*
2  * Copyright (C) 2017, 2018 Free Software Foundation
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (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 Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jfinancials.beans.business.basicdata;
18
19 import java.io.Serializable;
20 import org.mxchange.jcontactsbusiness.exceptions.basicdata.BasicDataNotFoundException;
21 import org.mxchange.jcontactsbusiness.model.basicdata.BasicData;
22
23 /**
24  * An interface for session-scoped financial controller
25  * <p>
26  * @author Roland Häder<roland@mxchange.org>
27  */
28 public interface FinancialsBasicDataWebRequestController extends Serializable {
29
30         /**
31          * Checks if given email address is already registered by other basic
32          * company data
33          * <p>
34          * @param emailAddress Email address
35          * <p>
36          * @return Whether the email address has been already registered
37          */
38         Boolean isEmailAddressRegistered (final String emailAddress);
39
40         /**
41          * Retrieves a single business data entity for given id number or throws a
42          * proper exception if not found.
43          * <p>
44          * @param basicDataId Company basic data id to lookup
45          * <p>
46          * @return Business contact instance
47          * <p>
48          * @throws BasicDataNotFoundException If the id number could not be looked
49          * up and solved into an entity
50          */
51         BasicData findBasicDataById (final Long basicDataId) throws BasicDataNotFoundException;
52
53         /**
54          * Checks whether given company name already exists
55          * <p>
56          * @param companyName Company name to check
57          * <p>
58          * @return Whether the company name exists
59          */
60         Boolean isCompanyNameUsed (final String companyName);
61
62 }