Logger LOG;
@Override
public Object getAsObject(FacesContext fc, UIComponent uic, String string) {
try {
NotifierStore notifierStore = retrieveNotifierStore();
return notifierStore.getNotifier(string);
} catch (BeanLocationException ex) {
LOG.log(Level.SEVERE, null, ex);
return null;
}
}