]> git.mxchange.org Git - jcore.git/blob - src/org/mxchange/jcore/criteria/Criteria.java
Added criteria stuff for data-gateway patterm + a lot refacturings
[jcore.git] / src / org / mxchange / jcore / criteria / Criteria.java
1 package org.mxchange.jcore.criteria;
2
3 /*
4  * Copyright (C) 2015 Roland Haeder
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 import org.mxchange.jcore.FrameworkInterface;
22
23 /**
24  * A general interface for criteria
25  *
26  * @author Roland Haeder
27  */
28 public interface Criteria extends FrameworkInterface {
29         /**
30          * Adds a binary criteria
31          *
32          * @param key Key of criteria
33          * @param value Value of criteria
34          */
35         public void addCriteria (final String key, final boolean value);
36 }