]> git.mxchange.org Git - jcoreee.git/commitdiff
updated own name and resources
authorRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:10 +0000 (23:55 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:10 +0000 (23:55 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
12 files changed:
src/org/mxchange/jcoreee/database/BaseDatabaseBean.java
src/org/mxchange/jcoreee/exceptions/CustomExceptionHandler.java
src/org/mxchange/jcoreee/exceptions/CustomExceptionHandlerFactory.java
src/org/mxchange/jcoreee/utils/FacesUtils.java
src/org/mxchange/jcoreee/validator/BaseObjectValidator.java
src/org/mxchange/jcoreee/validator/bool/BaseBooleanValidator.java
src/org/mxchange/jcoreee/validator/bool/privacy_terms/PrivacyTermsCheckboxValidator.java
src/org/mxchange/jcoreee/validator/date/BaseDateValidator.java
src/org/mxchange/jcoreee/validator/number/BaseLongValidator.java
src/org/mxchange/jcoreee/validator/number/item_amount/ItemAmountValidator.java
src/org/mxchange/jcoreee/validator/string/BaseStringValidator.java
src/org/mxchange/jcoreee/validator/string/names/NameValidator.java

index 07e54ae2a5224b37b75d68c29bcfb639da4669ec..b8511f8e792be9af86612ccb870daf8d948622af 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -32,7 +32,7 @@ import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
 /**
  * A helper class for beans that access the database.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseDatabaseBean implements Serializable {
 
index 856c170c35b972400ac8a0be99d4b936488672c4..1b039e0229b71562de738f130df72205262b6d3f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -38,7 +38,7 @@ import org.mxchange.jcoreeelogger.beans.local.logger.LoggerBeanLocal;
  * <p>
  * 1: https://wmarkito.wordpress.com/2012/04/05/adding-global-exception-handling-using-jsf-2-x-exceptionhandler/
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CustomExceptionHandler extends ExceptionHandlerWrapper {
 
index 9ee06d152b659c0d3613d4cd46c2e19746dbba2e..e17aa1f586233891b20c44689fbf853e34e82938 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -25,7 +25,7 @@ import javax.faces.context.ExceptionHandlerFactory;
  * <p>
  * 1: https://wmarkito.wordpress.com/2012/04/05/adding-global-exception-handling-using-jsf-2-x-exceptionhandler/
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class CustomExceptionHandlerFactory extends ExceptionHandlerFactory {
 
index 19714aff15701c0c60ff33906c8abdbc1354a96f..73502e92c13e67729e10cbe6395cb01eb28438c9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -22,7 +22,7 @@ import javax.faces.context.FacesContext;
 /**
  * An utilities class for JSF
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public class FacesUtils {
 
index 06c27479d3701b53e11c6ad9e79d9b6ea8358ce9..b7b882f5ddb273665f4d2580be08a3f037a2fe61 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -30,7 +30,7 @@ import javax.faces.validator.ValidatorException;
  * You also may want to try out some other BaseFooValidator classes before
  * directly inheriting from this class.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseObjectValidator implements Validator, Serializable {
 
index 5a9e57357732e0478d0780f7e81ee539d38b7013..bc10234a58c8a518d39fd86eae597cb8acbfb8fc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -30,7 +30,7 @@ import org.mxchange.jcoreee.validator.BaseObjectValidator;
  * A general boolean value validator.
  * <p>
  * @author BalusC
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseBooleanValidator extends BaseObjectValidator implements Validator {
 
index b7b7d5008df92a17a8b7eedd7ae15ee1a6f463ad..fae0031e7a6292b28d5360f526a33dc2aecbe87f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -26,7 +26,7 @@ import org.mxchange.jcoreee.validator.bool.BaseBooleanValidator;
 /**
  * A validator for privacy and terms checkboxes
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  * @deprecated Please copy this to your project and remove the deprecation annotation
  */
 @FacesValidator (value = "PrivacyTermsCheckboxValidator")
index d9df55493d91cf40e51685b10a8bf52b8eb3f2b3..a0b77ea7111bf11e5e53bdb70733375fb792951b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -27,7 +27,7 @@ import org.mxchange.jcoreee.validator.BaseObjectValidator;
 /**
  * A generic validator class for dates
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseDateValidator extends BaseObjectValidator {
 
index d10a6eb90c23f3a943cb1aaea25f8af88a0bdfdc..c0d4200517fd436a5f3b08dced52340a5461899c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -27,7 +27,7 @@ import org.mxchange.jcoreee.validator.BaseObjectValidator;
 /**
  * A general number value validator.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseLongValidator extends BaseObjectValidator implements Validator {
 
index 10e7e8ec2302e6e68037d5b795b889cc3cd69eae..483c7e3207878c35c347e2675e12fef64f81a76e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -26,7 +26,7 @@ import org.mxchange.jcoreee.validator.number.BaseLongValidator;
 /**
  * A validator for item amount
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  * @deprecated Please copy this to your project
  */
 @FacesValidator (value = "ItemAmountValidator")
index 315043141c6fb913b0029cf736d2a8b0ff846a9b..7399811f89b79681ad84b4e37a9d5cd1fbe6df8f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -27,7 +27,7 @@ import org.mxchange.jcoreee.validator.BaseObjectValidator;
  * A general string validation class. You normally want to inherit from this
  * class for many form fields, e.g. surname, street name, city name and such.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public abstract class BaseStringValidator extends BaseObjectValidator {
 
index 4a202b541944483253462703a4fe128e600e0a2a..0339ee8ec6be0e4de5fd686f26220842d4a70ee3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * 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
@@ -26,7 +26,7 @@ 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>
+ * @author Roland Häder<roland@mxchange.org>
  * @deprecated Please copy this to your project
  */
 @FacesValidator (value = "NameValidator")