Java tutorial
/* * Copyright 2017 Branislav Cavlin * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.bgh.myopeninvoice.jsf.converters; import org.apache.commons.lang3.StringUtils; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import javax.faces.convert.Converter; import javax.faces.convert.FacesConverter; /** * Created by bcavlin on 26/03/17. */ @FacesConverter("capitalizeConverter") public class CapitalizeConverter implements Converter { @Override public Object getAsObject(FacesContext facesContext, UIComponent uiComponent, String s) { return StringUtils.capitalize(s); } @Override public String getAsString(FacesContext facesContext, UIComponent uiComponent, Object o) { return StringUtils.trimToNull((String) o); } }