Examples of MontadorTXTFactory


Examples of ecar.intercambioDados.montador.MontadorTXTFactory

    return ImportacaoDadosFactory.criar(objetoNegocio).importar(objetoNegocio, tx, request, usuarioLogado, logger);
  }
 
  public IBusinessObject montar(IRegistro registro, PerfilIntercambioDadosPflid perfil, UsuarioUsu usuarioLogado) throws ECARException {
    // if (perfil tem tecnologia TXT)
    return new MontadorTXTFactory().criar(registro.getTipo(perfil), perfil).montar(registro, perfil, usuarioLogado);
    // if (perfil tem tecnologia WS)
//    return new MontadorWSFactory().criar(registro.getTipo(perfil)).montar(registro, perfil, usuarioLogado);
  }
View Full Code Here

Examples of ecar.intercambioDados.montador.MontadorTXTFactory

//    return new MontadorWSFactory().criar(registro.getTipo(perfil)).montar(registro, perfil, usuarioLogado);
  }
 
  public IBusinessObject montar(IBusinessObject objetoNegocio, PerfilIntercambioDadosPflid perfil, UsuarioUsu usuarioLogado) throws ECARException {
    // if (perfil tem tecnologia TXT e objeto de negocio � um item
    return new MontadorTXTFactory().criar(TipoDadosImportacao.ITEM, perfil).montar(objetoNegocio, perfil, usuarioLogado);
    // if (perfil tem tecnologia WS)
//    return new MontadorWSFactory().criar(registro.getTipo(perfil)).montar(registro, perfil, usuarioLogado);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.