Examples of fyi()


Examples of org.kuali.rice.kew.api.WorkflowDocument.fyi()

   */
  public void testWorkflowRoutingOnly_initiator_FYI(String docType, String initiator, String approver) throws WorkflowException {
    // one level approval
    WorkflowDocument doc = testWorkflowRoutingOnly(docType, initiator, approver);
    assertTrue("document should by fyi'ed to " + initiator, doc.isFYIRequested());
    doc.fyi("asante");
    // re-retrieve document to get updated status
    doc = WorkflowDocumentFactory.loadDocument(getPrincipalIdForName(initiator), doc.getDocumentId());
    assertFalse("document has been fyi'ed", doc.isFYIRequested());
   
    // direct approval
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.