Examples of generateUniqueID()


Examples of com.amazonaws.services.simpleworkflow.flow.generic.GenericWorkflowClient.generateUniqueId()

    }

    @Override
    public T getClient() {
      GenericWorkflowClient client = getGenericClientToUse();
        String workflowId = client.generateUniqueId();
        WorkflowExecution execution = new WorkflowExecution().withWorkflowId(workflowId);
        return getClient(execution, startWorkflowOptions, dataConverter);
    }

    @Override
View Full Code Here

Examples of com.amazonaws.services.simpleworkflow.flow.generic.GenericWorkflowClient.generateUniqueId()

    }

    @Override
    public T getClient() {
      GenericWorkflowClient client = getGenericClientToUse();
        String workflowId = client.generateUniqueId();
        WorkflowExecution execution = new WorkflowExecution().withWorkflowId(workflowId);
        return getClient(execution, startWorkflowOptions, dataConverter);
    }

    @Override
View Full Code Here

Examples of com.amazonaws.services.simpleworkflow.flow.generic.GenericWorkflowClient.generateUniqueId()

    }

    @Override
    public T getClient() {
      GenericWorkflowClient client = getGenericClientToUse();
        String workflowId = client.generateUniqueId();
        WorkflowExecution execution = new WorkflowExecution().withWorkflowId(workflowId);
        return getClient(execution, startWorkflowOptions, dataConverter);
    }

    @Override
View Full Code Here

Examples of com.amazonaws.services.simpleworkflow.flow.worker.GenericWorkflowClientExternalImpl.generateUniqueId()

    }

    DynamicWorkflowClientExternal getDynamicWorkflowClient(String workflowId, String runId) {
        GenericWorkflowClientExternalImpl genericClient = new GenericWorkflowClientExternalImpl(endpoint.getSWClient(), configuration.getDomainName());
        WorkflowExecution workflowExecution = new WorkflowExecution();
        workflowExecution.setWorkflowId(workflowId != null ? workflowId : genericClient.generateUniqueId());
        workflowExecution.setRunId(runId);
        return new DynamicWorkflowClientExternalImpl(workflowExecution, null, endpoint.getStartWorkflowOptions(), null, genericClient);
    }

    private Object[] toArray(Object input) {
View Full Code Here

Examples of com.commander4j.db.JDBLabelData.generateUniqueID()

  {
    String result = "";

    JDBLabelData labelData = new JDBLabelData(Common.selectedHostID, Common.sessionID);

    labelData.generateUniqueID();
    labelData.setPrintDate(JUtility.getSQLDateTime());
    labelData.setUserID(Common.userList.getUser(Common.sessionID).getUserId());
    labelData.setWorkstationID(JUtility.getClientName());
    labelData.setMaterial(processorder.getMaterial());
    labelData.setMaterialType(material.getMaterialType());
View Full Code Here

Examples of com.commander4j.db.JDBLabelData.generateUniqueID()

  {
    String result = "";

    JDBLabelData labelData = new JDBLabelData(Common.selectedHostID, Common.sessionID);

    labelData.generateUniqueID();
    labelData.setPrintDate(JUtility.getSQLDateTime());
    labelData.setUserID(Common.userList.getUser(Common.sessionID).getUserId());
    labelData.setWorkstationID(JUtility.getClientName());
    labelData.setMaterial(processorder.getMaterial());
    labelData.setMaterialType(material.getMaterialType());
View Full Code Here

Examples of org.apache.myfaces.view.facelets.FaceletCompositionContext.generateUniqueId()

        // c:forEach are close between each other. Note c:forEach is different from
        // c:if tag and doesn't require a section because c:forEach requires to provide
        // multiple sections starting with a specified "base" related to the element
        // position and value in the collection.
        fcc.incrementUniqueComponentId();
        String uniqueId = actx.generateUniqueFaceletTagId(fcc.generateUniqueId(), tagId);
        if (src != null)
        {
            PageContext pctx = actx.getPageContext();
            // c:forEach is special because it requires FaceletState even if no pss is used.
            FaceletState restoredFaceletState = ComponentSupport.getFaceletState(ctx, parent, false);
View Full Code Here

Examples of org.apache.myfaces.view.facelets.FaceletCompositionContext.generateUniqueId()

        // c:forEach are close between each other. Note c:forEach is different from
        // c:if tag and doesn't require a section because c:forEach requires to provide
        // multiple sections starting with a specified "base" related to the element
        // position and value in the collection.
        fcc.incrementUniqueComponentId();
        String uniqueId = fcc.generateUniqueId();
        if (src != null)
        {
            AbstractFaceletContext actx = (AbstractFaceletContext) ctx;
            PageContext pctx = actx.getPageContext();
            // c:forEach is special because it requires FaceletState even if no pss is used.
View Full Code Here

Examples of org.hornetq.core.persistence.StorageManager.generateUniqueID()

      {
         throw new Exception("Message header too big, increase minLargeMessageSize please.");
      }

      StorageManager storageManager = ((ServerSessionImpl)session).getStorageManager();
      long id = storageManager.generateUniqueID();
      LargeServerMessage largeMessage = storageManager.createLargeMessage(id, message);
     
      byte[] bytes = new byte[message.getBodyBuffer().writerIndex() - MessageImpl.BODY_OFFSET];
      message.getBodyBuffer().readBytes(bytes);
     
View Full Code Here

Examples of org.hornetq.core.persistence.StorageManager.generateUniqueID()

      System.out.println("Cursor: " + cursor);

      StorageManager storage = this.server.getStorageManager();

      long pgtxRollback = storage.generateUniqueID();
      long pgtxForgotten = storage.generateUniqueID();
      long pgtxCommit = storage.generateUniqueID();

      Transaction txRollback = pgMessages(storage, pageStore, pgtxRollback, 0, NUM_MESSAGES, messageSize);
      pageStore.forceAnotherPage();
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.