X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2Fjava%2Forg%2Fmxchange%2Fjjobs%2Fconverter%2Fuser%2FUserConverter.java;h=b2e0ae91c1be8b6896761f82960cb45814bea947;hb=2216eb5109d3676b624ae116b7d6af35134c6f15;hp=d750d73c6c9ce2fcca0d23970e3dcb467dac79b5;hpb=7136174f63165875706b74edbabc36f872c525ae;p=jjobs-war.git diff --git a/src/java/org/mxchange/jjobs/converter/user/UserConverter.java b/src/java/org/mxchange/jjobs/converter/user/UserConverter.java index d750d73c..b2e0ae91 100644 --- a/src/java/org/mxchange/jjobs/converter/user/UserConverter.java +++ b/src/java/org/mxchange/jjobs/converter/user/UserConverter.java @@ -2,16 +2,16 @@ * 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. + * it under the terms of the GNU Affero 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. + * GNU Affero General Public License for more details. * - * You should have received a copy of the GNU General Public License + * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ package org.mxchange.jjobs.converter.user; @@ -35,7 +35,7 @@ import org.mxchange.jusercore.model.user.User; /** * Converter for user id <-> valid user instance *

- * @author Roland Haeder + * @author Roland Haeder */ @FacesConverter (value = "UserConverter") public class UserConverter implements Converter { @@ -79,6 +79,9 @@ public class UserConverter implements Converter { // Is the value null or empty? if ((null == submittedValue) || (submittedValue.trim().isEmpty())) { + // Trace message + this.loggerBeanLocal.logTrace("getAsObject: submittedValue is null or empty - EXIT!"); //NOI18N + // Return null return null; }