Esempio n. 1
0
 public List<InterfaceTO> ListaTodasInterfaces() throws BusinessException {
   InterfaceDelegate ItfDelegate;
   List<InterfaceTO> itf = new ArrayList<InterfaceTO>();
   ItfDelegate = InterfaceDelegate.getInstance();
   for (BaseTO crItfTO : ItfDelegate.readAll()) {
     // não exibir  FAST ETH
     if (!((InterfaceTO) crItfTO).getDescricao().equals("FAST ETH")) {
       itf.add((InterfaceTO) crItfTO);
     }
   }
   return itf;
 }
Esempio n. 2
0
  public void preencheTOsdeCombo(AcessoTO acessoTO, AcessoFormBean formulario)
      throws NumberFormatException, DelegateException, BusinessException {
    if (Util.isNumeric(acessoTO.getCodigoCaracteristicaInterface()))
      formulario.setCaracteristicaInterfaceTO(
          (CaracteristicaInterfaceTO)
              CaracteristicaInterfaceDelegate.getInstance()
                  .read(Long.valueOf(acessoTO.getCodigoCaracteristicaInterface())));
    else formulario.setCaracteristicaInterfaceTO(new CaracteristicaInterfaceTO());

    if (Util.isNumeric(acessoTO.getCodigoInterface()))
      formulario.setInterfaceTO(
          (InterfaceTO)
              InterfaceDelegate.getInstance().read(Long.valueOf(acessoTO.getCodigoInterface())));
    else formulario.setInterfaceTO(new InterfaceTO());

    if (Util.isNumeric(acessoTO.getCodigoInterfaceSSA()))
      formulario.setInterfaceTO(
          (InterfaceTO)
              InterfaceDelegate.getInstance().read(Long.valueOf(acessoTO.getCodigoInterfaceSSA())));
    else formulario.setInterfaceTO(new InterfaceTO());

    if (Util.isNumeric(acessoTO.getCodigoTipoAcesso()))
      formulario.setTipoAcessoTO(
          (TipoAcessoTO)
              TipoAcessoDelegate.getInstance().read(Long.valueOf(acessoTO.getCodigoTipoAcesso())));
    else formulario.setTipoAcessoTO(new TipoAcessoTO());

    if (Util.isNumeric(acessoTO.getCodigoTipoAcessoSSA()))
      formulario.setTipoAcessoTO(
          (TipoAcessoTO)
              TipoAcessoDelegate.getInstance()
                  .read(Long.valueOf(acessoTO.getCodigoTipoAcessoSSA())));
    else formulario.setTipoAcessoTO(new TipoAcessoTO());

    if (Util.isNumeric(acessoTO.getCodigoFornecedor()))
      formulario.setProvedorAcessoTO(
          (ProvedorAcessoTO)
              ProvedorAcessoDelegate.getInstance()
                  .read(Long.valueOf(acessoTO.getCodigoFornecedor())));
    else formulario.setProvedorAcessoTO(new ProvedorAcessoTO());
  }