Examples of execute()


Examples of org.rstudio.core.client.widget.Operation.execute()

         }
      };

      if (conflict)
      {
         resolveOperation.execute();
      }
      else
      {
         String message =
               (paths.size() > 1 ?
View Full Code Here

Examples of org.rzo.yajsw.action.Action.execute()

    Action a = ActionFactory.getAction(m);
    try
    {
      ByteArrayOutputStream str = new ByteArrayOutputStream();
      PrintStream pr = new PrintStream(str);
      a.execute(m, null, pr, null);
      pr.flush();
      getWrapperLogger().info(str.toString());
    }
    catch (IOException e)
    {
View Full Code Here

Examples of org.rzo.yajsw.script.Script.execute()

        _cluster = clazz.newInstance();
        _clusterListener = new ClusterNodeChangeListener()
        {
          public void nodeChanged()
          {
            script.execute();
          }
        };
        Method m = clazz.getMethod("addNodeChangeListener", ClusterNodeChangeListener.class);
        m.invoke(_cluster, _clusterListener);
      }
View Full Code Here

Examples of org.saiku.olap.query.IQuery.execute()

      }

      String mdx = query.getMdx();
      LOG.info(runId + "\tType:" + query.getType() + ":\n" + mdx);

      CellSet cellSet = query.execute();
      Long exec = new Date().getTime();

      if (query.getScenario() != null) {
        LOG.info("Query (" + queryName + ") removing scenario:" + query.getScenario().getId());
        con.setScenario(null);
View Full Code Here

Examples of org.salamanca.commands.ICommand.execute()

            User user = new User();
            user.setName(name);
            user.setRole(getRole());
            ICommand insertar = CommandFactory.createInsertarUsuario(user);
            try {
                insertar.execute();
            } catch (MessageException ex) {
                JOptionPane.showMessageDialog(this, ex.getMessage());
            } catch (Exception ex) {
                JOptionPane.showMessageDialog(this, "Entrada no valida");
            }
View Full Code Here

Examples of org.salamandra.web.core.transformer.Transformer.execute()

    Transformer transformer = transformerFactory.getTransformer(forward.getPath());
    if (transformer != null) {
      try {

        transformer.execute(request, response);
      } catch (TransformerException e) {
        log.error("Errore nell'esecuzione del Transformer", e);
      }
    } else {
      super.processForwardConfig(request, response, forward);
View Full Code Here

Examples of org.scale7.cassandra.pelops.Mutator.execute()

                columns.add(col);
            }

            mutator.writeColumns(column_family, Bytes.fromUTF8(key), columns);
            mutator.execute(writeConsistencyLevel);

            return Ok;
        }
        catch (Exception e)
        {
View Full Code Here

Examples of org.semanticweb.HermiT.debugger.commands.DebuggerCommand.execute()

        String commandName=parsedCommand[0];
        DebuggerCommand command=getCommand(commandName);
        if (command==null)
            m_output.println("Unknown command '"+commandName+"'.");
        else {
            command.execute(parsedCommand);
            if (!(command instanceof AgainCommand))
                m_lastCommand=commandLine;
        }
    }
    protected String[] parse(String command) {
View Full Code Here

Examples of org.serviceconnector.api.cln.SCSessionService.execute()

      SCMessage requestMsg = new SCMessage();
      SCMessage responseMsg = new SCMessage();

      for (int i = 0; i < 5; i++) {
        requestMsg.setData("body nr : " + i);
        responseMsg = service.execute(requestMsg); // regular synchronous call
        LOGGER.info("Message sent sync=" + requestMsg.getData());
        LOGGER.info("Message received sync=" + responseMsg.getData());
        Thread.sleep(2000);
      }
      for (int i = 0; i < 5; i++) {
View Full Code Here

Examples of org.serviceconnector.server.CascadedSC.execute()

    String serviceName = reqMessage.getServiceName();
    int oti = reqMessage.getHeaderInt(SCMPHeaderAttributeKey.OPERATION_TIMEOUT);
    Service abstractService = this.getService(serviceName);
    CascadedSC cascadedSC = ((CascadedSessionService) abstractService).getCascadedSC();
    ClnExecuteCommandCascCallback callback = new ClnExecuteCommandCascCallback(request, response, responderCallback);
    cascadedSC.execute(reqMessage, callback, oti);
    return;
  }

  /** {@inheritDoc} */
  @Override
 
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.