From d09330ad97d632c23596d5facd44a76a8be3a64b Mon Sep 17 00:00:00 2001
From: =?utf8?q?Roland=20H=C3=A4der?= <roland@mxchange.org>
Date: Wed, 19 Apr 2017 21:13:52 +0200
Subject: [PATCH] deleted deprecated validators
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

Signed-off-by: Roland Häder <roland@mxchange.org>
---
 .../PrivacyTermsCheckboxValidator.java        | 55 ------------------
 .../item_amount/ItemAmountValidator.java      | 56 -------------------
 .../validator/string/names/NameValidator.java | 56 -------------------
 3 files changed, 167 deletions(-)
 delete mode 100644 src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
 delete mode 100644 src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
 delete mode 100644 src/org/mxchange/jcoreee/validator/string/names/NameValidator.java

diff --git a/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java b/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
deleted file mode 100644
index fae0031..0000000
--- a/src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcoreee.validator.bool.privacy_terms;
-
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-import javax.faces.validator.FacesValidator;
-import javax.faces.validator.Validator;
-import javax.faces.validator.ValidatorException;
-import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator;
-
-/**
- * A validator for privacy and terms checkboxes
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- * @deprecated Please copy this to your project and remove the deprecation annotation
- */
-@FacesValidator (value = "PrivacyTermsCheckboxValidator")
-@Deprecated
-public class PrivacyTermsCheckboxValidator extends BaseBooleanValidator implements Validator {
-
-	/**
-	 * Serial number
-	 */
-	private static final long serialVersionUID = 49_241_787_855_847_581L;
-
-	@Override
-	public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
-
-		// All accepted, required fields
-		String[] requiredFields = {"privacy", "terms"}; //NOI18N
-
-		// Pre-validation (example: not null, not a string, empty string ...)
-		super.preValidate(context, component, value, requiredFields, false);
-
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N
-	}
-}
diff --git a/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java b/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
deleted file mode 100644
index 483c7e3..0000000
--- a/src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcoreee.validator.number.item_amount;
-
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-import javax.faces.validator.FacesValidator;
-import javax.faces.validator.Validator;
-import javax.faces.validator.ValidatorException;
-import org.mxchange.jcoreee.validator.number.BaseLongValidator;
-
-/**
- * A validator for item amount
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- * @deprecated Please copy this to your project
- */
-@FacesValidator (value = "ItemAmountValidator")
-@Deprecated
-public class ItemAmountValidator extends BaseLongValidator implements Validator {
-
-	/**
-	 * Serial number
-	 */
-	private static final long serialVersionUID = 64_578_478_218_698_930L;
-
-	@Override
-	public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
-
-		// The required field
-		String[] requiredFields = {"amount"}; //NOI18N
-
-		// Pre-validation (example: not null, not a string, empty string ...)
-		super.preValidate(context, component, value, requiredFields, false);
-
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N
-	}
-
-}
diff --git a/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java b/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java
deleted file mode 100644
index 0339ee8..0000000
--- a/src/org/mxchange/jcoreee/validator/string/names/NameValidator.java
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright (C) 2016 Roland Häder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.jcoreee.validator.string.names;
-
-import javax.faces.component.UIComponent;
-import javax.faces.context.FacesContext;
-import javax.faces.validator.FacesValidator;
-import javax.faces.validator.Validator;
-import javax.faces.validator.ValidatorException;
-import org.mxchange.jcoreee.validator.string.BaseStringValidator;
-
-/**
- * A validation class for names, such as first name or family name.
- * <p>
- * @author Roland Häder<roland@mxchange.org>
- * @deprecated Please copy this to your project
- */
-@FacesValidator (value = "NameValidator")
-@Deprecated
-public class NameValidator extends BaseStringValidator implements Validator {
-
-	/**
-	 * Serial number
-	 */
-	private static final long serialVersionUID = 27_587_896_710_689_451L;
-
-	@Override
-	public void validate (final FacesContext context, final UIComponent component, final Object value) throws ValidatorException {
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println(MessageFormat.format("validate: context={0},component={1},value={2} - CALLED!", context, component, value)); //NOI18N
-
-		// All accepted, required fields
-		String[] requiredFields = {"firstName", "familyName", "city", "street"}; //NOI18N
-
-		// Pre-validation (example: not null, not a string, empty string ...)
-		super.preValidate(context, component, value, requiredFields, true);
-
-		// Trace message
-		//* NOISY-DEBUG: */ System.out.println("validate: EXIT!"); //NOI18N
-	}
-
-}
-- 
2.39.5