1 /*
2 * Copyright (C) 2015 B3Partners B.V.
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 nl.b3p.viewer.ibis.util;
18
19 /**
20 * Utility interface with constants for IBIS.
21 *
22 * @author mprins
23 */
24 public interface IbisConstants {
25 /**
26 * name of the kavel layer ({@value}).
27 */
28 public static final String KAVEL_LAYER_NAME = "bedrijvenkavels";
29 /**
30 * name of the terrein layer ({@value}).
31 */
32 public static final String TERREIN_LAYER_NAME = "bedrijventerrein";
33 /**
34 * Name of the foreign TERREIN ID field in the datamodel ({@value}). (exists
35 * only in {@link IbisConstants#KAVEL_LAYER_NAME}).
36 */
37 public static final String KAVEL_TERREIN_ID_FIELDNAME = "terreinid";
38 /**
39 * name of the ID field in the datamodel ({@value}).
40 */
41 public static final String ID_FIELDNAME = "ibis_id";
42 /**
43 * name of the workflow field in the datamodel ({@value}).
44 */
45 public static final String WORKFLOW_FIELDNAME = "workflow_status";
46 /**
47 * name of the mutatiedatum field in the datamodel ({@value}).
48 */
49 public static final String MUTATIEDATUM_FIELDNAME = "datummutatie";
50 }