Package it.pdor.webapp.common

Examples of it.pdor.webapp.common.CommonMessageBundle


    else if ("R".equals(getInterfacciaAntiMafia().getFlagRapportoSoggetto())) {
      RisultatoRicercaMutuoBackingBean risultatoRicercaMutuo = (RisultatoRicercaMutuoBackingBean) BackingBeanUtility.trova("risultatoRicercaMutuo");
      risultatoRicercaMutuo.cercaMutuoGenerale(ae);
    }
    else {
      CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgFlagRapportoSoggettoNonValorizzato"));
      alertMsgPopup.openPopup();
    }
  }
View Full Code Here


    try {
      popupConfermaSalva.closePopup();
      partitarioController.applicaModifiche(getListaRighe());
    } catch (ContabilitaException e) {
      log.debug(e.getMessage(), e);
      CommonMessageBundle mb = new CommonMessageBundle();
      alertMsgPopup.setMessage(mb.getMessage("AlertProblemaSalvataggio"));
      alertMsgPopup.openPopup();
    }
  }
View Full Code Here

    else if ("C".equals(getInterfacciaAntiMafia().getTipoBeneficiario())) {
      ListaRigheCointestazioneBackingBean listaRigheCointestazioneBackingBean = (ListaRigheCointestazioneBackingBean) BackingBeanUtility.trova("listaRigheCointestazioneBackingBean");
      listaRigheCointestazioneBackingBean.cercaCointestazioneGenerale(ae);
    }
    else {
      CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgTipoBeneficiarioNonValorizzato"));
      alertMsgPopup.openPopup();
    }
  }
View Full Code Here

  }
 
  public boolean controllaInterfacciaAntiMafia()
  {
    InterfacciaAntiMafia interfacciaAntiMafia = (InterfacciaAntiMafia) getDettaglio();
    CommonMessageBundle messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
    if (StringUtility.checkNull(interfacciaAntiMafia.getCodiceCausaleAntiMafia()).equals(""))
    {
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCausaleAntiMafiaNonValorizzata"));
      alertMsgPopup.openPopup();
      return false;
    }
    if (StringUtility.checkNull(interfacciaAntiMafia.getTipoRegistrazione()).equals(""))
    {
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgTipoRegistrazioneNonValorizzato"));
      alertMsgPopup.openPopup();
      return false;
    }
    if (StringUtility.checkNull(interfacciaAntiMafia.getCodiceMezzoPagamento()).equals(""))
    {
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgMezzoPagamentoNonValorizzato"));
      alertMsgPopup.openPopup();
      return false;
    }
    if (NumberUtils.checkNull(interfacciaAntiMafia.getCodiceControparte()).longValue() == 0)
    {
      alertMsgPopup.setMessage(messageBundle.getMessage("AlertMsgCodiceControparteNonValorizzato"));
      alertMsgPopup.openPopup();
      return false;
    }
    return true;
  }
View Full Code Here

class MovimentoNonValidoException extends Exception {
  private String alertMsgKey;
  private CommonMessageBundle messageBundle;

  public MovimentoNonValidoException(String alertMsgKey) {
    messageBundle = new CommonMessageBundle((new ConfigBean()).getOperazioniGiornaliereMessages());
    this.alertMsgKey = alertMsgKey;
  }
View Full Code Here

TOP

Related Classes of it.pdor.webapp.common.CommonMessageBundle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.