br.ufg.calendario.converters.InteressadoConverter.java Source code

Java tutorial

Introduction

Here is the source code for br.ufg.calendario.converters.InteressadoConverter.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package br.ufg.calendario.converters;

import br.ufg.calendario.dao.InteressadoDao;
import br.ufg.calendario.models.Interessado;
import javax.faces.component.UIComponent;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

/**
 *
 * @author Andre Luiz Fernandes Ribeiro Barca
 */
@Component
public class InteressadoConverter implements Converter {

    @Autowired
    private InteressadoDao interessadoDao;

    @Override
    public Object getAsObject(FacesContext context, UIComponent component, String value) {
        try {
            Interessado interessado = interessadoDao.buscarPorId(Long.parseLong(value));
            return interessado;
        } catch (NumberFormatException e) {
            return null;
        }
    }

    @Override
    public String getAsString(FacesContext context, UIComponent component, Object value) {
        Interessado obj = (Interessado) value;
        if (obj != null && obj.getId() != null) {
            return Long.toString(obj.getId());
        } else {
            return null;
        }
    }
}