Examples of submitToWorkflow()


Examples of com.hlcl.rql.as.Page.submitToWorkflow()

        // replace
        newValue = StringHelper.replace(value, findValue, replaceValue);
        if (!newValue.equals(value)) {
          parameterPg.setTextValue(VALUE_TMPLT_ELEM_NAME, newValue);
          if (parameterPg.isInStateSavedAsDraft()) {
            parameterPg.submitToWorkflow();
          }
          // force re-read of parameters
          parameters = null;
        }
      } else {
View Full Code Here

Examples of com.hlcl.rql.as.Page.submitToWorkflow()

        // replace
        newValue = StringHelper.replace(value, findValue, replaceValue);
        if (!newValue.equals(value)) {
          parameterPg.setHeadline(key + DELIMITER + newValue);
          if (parameterPg.isInStateSavedAsDraft()) {
            parameterPg.submitToWorkflow();
          }
          // force re-read of parameters
          parameters = null;
        }
      }
View Full Code Here

Examples of com.hlcl.rql.as.Page.submitToWorkflow()

    Project project = client.getProject(sessionKey, projectGuid);

    Page currentPg = project.getPageById("34009");
    currentPg.undoChanges();
    currentPg.reject("note name", "reject comment");
    currentPg.submitToWorkflow();
    currentPg.release();
   
    currentPg.resetDraftState();
  }
}
View Full Code Here

Examples of com.hlcl.rql.as.Page.submitToWorkflow()

   * @see Page#submitToWorkflow()
   */
  public void submitAllToWorkflow() throws RQLException {
    for (int i = 0; i < size(); i++) {
      Page page = (Page) get(i);
      page.submitToWorkflow();
    }
  }

  /**
   * Löscht alle Seiten in dieser Liste. Diese Liste ist danach leer. Auch mehrfach verlinkte Seiten werden gelöscht!
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.