Package es.emergya.webservices.ServiceStub

Examples of es.emergya.webservices.ServiceStub.GetRecursosEnPeriodo


  protected String[] getRecursosEnPeriodo(String nombreUsuario, Calendar ini,
      Calendar fin, long[] zonas) {
    try {
      ServiceStub client = WSProvider.getServiceClient();
      GetRecursosEnPeriodo param = new GetRecursosEnPeriodo();
      param.setFechaInicio(ini);
      param.setFechaFinal(fin);
      param.setZonas(zonas);
      param.setNombreUsuario(nombreUsuario);
      GetRecursosEnPeriodoResponse res = client
          .getRecursosEnPeriodo(param);
      String[] rec = res.get_return();
      if (rec != null) {
        log.trace("Nos ha devuelto " + rec.length + " recursos.");
View Full Code Here

TOP

Related Classes of es.emergya.webservices.ServiceStub.GetRecursosEnPeriodo

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.