All Downloads are FREE. Search and download functionalities are using the official Maven repository.

br.com.jarch.faces.parameter.DefaultConverter Maven / Gradle / Ivy

package br.com.jarch.faces.parameter;

import br.com.jarch.core.model.IIdentity;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;

public class DefaultConverter implements Converter {

    @Override
    public IIdentity getAsObject(FacesContext facesContext, UIComponent uiComponent, String s) {
        return null;
    }

    @Override
    public String getAsString(FacesContext facesContext, UIComponent uiComponent, IIdentity identity) {
        return "";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy