From 08dd8c76011373907043a057725c6df06b9e65fa Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sun, 22 May 2016 22:17:53 +0200 Subject: [PATCH] fixes MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../UserProfileVisibilityValidator.java | 54 ------------------- .../user/AddressbookUserIdValidator.java | 2 +- 2 files changed, 1 insertion(+), 55 deletions(-) delete mode 100644 src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java diff --git a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java b/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java deleted file mode 100644 index c56ab48..0000000 --- a/src/org/mxchange/addressbook/validator/booleans/UserProfileVisibilityValidator.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2016 Roland Haeder - * - * 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 . - */ -package org.mxchange.addressbook.validator.booleans; - -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 user profile visibility - *

- * @author Roland Haeder - */ -@FacesValidator (value = "UserProfileVisibilityValidator") -public class UserProfileVisibilityValidator extends BaseBooleanValidator implements Validator { - - /** - * Serial number - */ - private static final long serialVersionUID = 185_768_717_676_910_450L; - - @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 = {"publicUserProfileFlag"}; //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/addressbook/validator/user/AddressbookUserIdValidator.java b/src/org/mxchange/addressbook/validator/user/AddressbookUserIdValidator.java index 1644d61..3402a56 100644 --- a/src/org/mxchange/addressbook/validator/user/AddressbookUserIdValidator.java +++ b/src/org/mxchange/addressbook/validator/user/AddressbookUserIdValidator.java @@ -90,7 +90,7 @@ public class AddressbookUserIdValidator extends BaseLongValidator implements Val *

* @param event User registration event */ - public void afterRegistrationEvent (final @Observes UserRegisteredEvent event) { + public void afterRegistrationEvent (@Observes final UserRegisteredEvent event) { // Trace message this.loggerBeanLocal.logTrace(MessageFormat.format("UserIdValidator:afterRegistrationEvent: event={0} - CALLED!", event)); //NOI18N -- 2.39.5