Logger LOG;
@Override
public Object getAsObject(FacesContext fc, UIComponent uic, String string) {
try {
ScriptStore scriptStore = retrieveScriptStore();
return scriptStore.getScript(string);
} catch (BeanLocationException ex) {
LOG.log(Level.SEVERE, null, ex);
return null;
}
}