]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/phone/JobsPhoneWebApplicationController.java
WIP: Please cherry-pick:
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / phone / JobsPhoneWebApplicationController.java
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
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.jjobs.beans.phone;
18
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
22 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
23 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
24
25 /**
26  * An interface for a request web controller (bean) for administrative phone
27  * number purposes.
28  * <p>
29  * @author Roland Häder<roland@mxchange.org>
30  */
31 public interface JobsPhoneWebApplicationController extends Serializable {
32
33         /**
34          * Returns a list of all mobile numbers. For performance reasons, the
35          * controller (bean) should be application-scoped as from user to user
36          * nothing changes. And the controller's post-construct method should load
37          * all numbers and cache it in the controller.
38          * <p>
39          * @return List of all mobile numbers
40          */
41         List<DialableMobileNumber> allMobileNumbers ();
42
43         /**
44          * Returns a list of all fax numbers. For performance reasons, the
45          * controller (bean) should be application-scoped as from user to user
46          * nothing changes. And the controller's post-construct method should load
47          * all numbers and cache it in the controller.
48          * <p>
49          * @return List of all fax numbers
50          */
51         List<DialableFaxNumber> allFaxNumbers ();
52
53         /**
54          * Returns a list of all land-line numbers. For performance reasons, the
55          * controller (bean) should be application-scoped as from user to user
56          * nothing changes. And the controller's post-construct method should load
57          * all numbers and cache it in the controller.
58          * <p>
59          * @return List of all land-line numbers
60          */
61         List<DialableLandLineNumber> allLandLineNumbers ();
62
63 }