From 95f9ddb11ca6fc5a1c60718bb67e39f62d361054 Mon Sep 17 00:00:00 2001 From: konermann Date: Fri, 20 Nov 2015 06:42:54 +0000 Subject: [PATCH] CCM NG: fixed some bugs, added missing constants git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@3738 8810af33-2d31-482b-a856-94f89814c4df --- .../decisiontree/DecisiontreeConstants.java | 30 +++++++++++++++++++ .../DecisiontreeOptionTarget.java | 2 +- .../decisiontree/DecisiontreeSection.java | 2 +- .../DecisiontreeSectionOption.java | 2 +- 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeConstants.java diff --git a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeConstants.java b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeConstants.java new file mode 100644 index 000000000..e76c11a5f --- /dev/null +++ b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeConstants.java @@ -0,0 +1,30 @@ +/* +/* + * Copyright (C) 2015 LibreCCM Foundation. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301 USA + */ +package org.librecms.contenttypes.decisiontree; + +public final class DecisiontreeConstants { + + public static final String DB_SCHEMA = "cms_types_decisiontree"; + + private DecisiontreeConstants() { + //Nothing + } + +} \ No newline at end of file diff --git a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeOptionTarget.java b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeOptionTarget.java index a0174c3ea..485110060 100644 --- a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeOptionTarget.java +++ b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeOptionTarget.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package org.librecms.contenttypes.agenda.decisiontree; +package org.librecms.contenttypes.decisiontree; import java.io.Serializable; import javax.persistence.Column; diff --git a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSection.java b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSection.java index 0d89528f0..b7a276ed9 100644 --- a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSection.java +++ b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSection.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package org.librecms.contenttypes.agenda.decisiontree; +package org.librecms.contenttypes.decisiontree; import java.io.Serializable; import java.util.List; diff --git a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSectionOption.java b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSectionOption.java index 4c1193e55..6a77c1042 100644 --- a/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSectionOption.java +++ b/ccm-cms-types-decisiontree/src/main/java/org/librecms/contenttypes/decisiontree/DecisiontreeSectionOption.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ -package org.librecms.contenttypes.agenda.decisiontree; +package org.librecms.contenttypes.decisiontree; import java.io.Serializable; import javax.persistence.Column;