]> git.mxchange.org Git - jcore-utils.git/commitdiff
this thing does not work if you don't have the JAR inside the WAR file. Better is...
authorRoland Häder <roland@mxchange.org>
Mon, 23 May 2016 11:54:44 +0000 (13:54 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 23 May 2016 12:01:16 +0000 (14:01 +0200)
src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
src/org/mxchange/jcoreee/validator/string/names/NameValidator.java

index f59654ed907e20efabbeeeefc9ea1225823c5b1a..b7b7d5008df92a17a8b7eedd7ae15ee1a6f463ad 100644 (file)
@@ -27,8 +27,10 @@ import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator;
  * A validator for privacy and terms checkboxes
  * <p>
  * @author Roland Haeder<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 {
 
        /**
index 338a38c21cd774e747c4af89a7182602d8a242ee..ccffa4aa6260676697a97fbf4f3198d76ee30e74 100644 (file)
@@ -27,8 +27,10 @@ import org.mxchange.jcoreee.validator.number.BaseLongValidator;
  * A validator for item amount
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
+ * @deprecated Please copy this to your project
  */
 @FacesValidator (value = "ItemAmountValidator")
+@Deprecated
 public class ItemAmountValidator extends BaseLongValidator implements Validator {
 
        /**
index 02cbfe0590fea3aa67017be3eacb3771bba91c4d..fa716c7b8a93207fe2612a4942d522dca3cf0180 100644 (file)
@@ -27,8 +27,10 @@ import org.mxchange.jcoreee.validator.string.BaseStringValidator;
  * A validation class for names, such as first name or family name.
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
+ * @deprecated Please copy this to your project
  */
 @FacesValidator (value = "NameValidator")
+@Deprecated
 public class NameValidator extends BaseStringValidator implements Validator {
 
        /**