/* * 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 edu.harvard.iq.dataverse; import javax.ejb.EJB; import javax.faces.component.UIComponent; import javax.faces.context.FacesContext; import javax.faces.convert.Converter; import javax.faces.convert.FacesConverter; /** * * @author xyang */ @FacesConverter("controlledVocabularyValueConverter") public class ControlledVocabularyValueConverter implements Converter { @EJB DatasetFieldServiceBean datasetFieldService; public Object getAsObject(FacesContext facesContext, UIComponent component, String submittedValue) { if (submittedValue == null || submittedValue.equals("")) { return ""; } else { ControlledVocabularyValue cvv = datasetFieldService.findControlledVocabularyValue(new Long(submittedValue)); return cvv; } } public String getAsString(FacesContext facesContext, UIComponent component, Object value) { if (value == null || value.equals("")) { return ""; } else { return ((ControlledVocabularyValue) value).getId().toString(); } } }