]> git.mxchange.org Git - jfinancials-war.git/blob
e885949a118c0f753d5e82404746dbfdd271f9ce
[jfinancials-war.git] /
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.jfinancials.beans.financial.model.income;
18
19 import java.io.Serializable;
20 import java.util.List;
21 import org.mxchange.jfinancials.model.income.interval.FinancialInterval;
22
23 /**
24  * An administrative interface for financial income beans
25  * <p>
26  * @author Roland Häder<roland@mxchange.org>
27  */
28 public interface FinancialsIncomeWebRequestController extends Serializable {
29
30         /**
31          * Getter for income single amount
32          * <p>
33          * @return Income single amount
34          */
35         Float getIncomeSingleAmount ();
36
37         /**
38          * Setter for income single amount
39          * <p>
40          * @param incomeSingleAmount Income single amount
41          */
42         void setIncomeSingleAmount (final Float incomeSingleAmount);
43
44         /**
45          * Getter for income (type) title
46          * <p>
47          * @return Income title
48          */
49         String getIncomeTitle ();
50
51         /**
52          * Setter for income (type) title
53          * <p>
54          * @param incomeTitle Income title
55          */
56         void setIncomeTitle (final String incomeTitle);
57
58         /**
59          * Getter for income interval
60          * <p>
61          * @return Income interval
62          */
63         FinancialInterval getIncomeInterval ();
64
65         /**
66          * Setter for income (type) interval
67          * <p>
68          * @param incomeInterval Income interval
69          */
70         void setIncomeInterval (final FinancialInterval incomeInterval);
71
72         /**
73          * Returns a list of all all income intervals
74          * <p>
75          * @return Income intervals
76          */
77         List<FinancialInterval> allIncomeIntervals ();
78
79 }