本文整理汇总了Java中org.kuali.rice.kew.api.WorkflowDocument.superUserReturnToPreviousNode方法的典型用法代码示例。如果您正苦于以下问题:Java WorkflowDocument.superUserReturnToPreviousNode方法的具体用法?Java WorkflowDocument.superUserReturnToPreviousNode怎么用?Java WorkflowDocument.superUserReturnToPreviousNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.kuali.rice.kew.api.WorkflowDocument
的用法示例。
在下文中一共展示了WorkflowDocument.superUserReturnToPreviousNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testSuperUserApproveDisallowedOnFinalNode
import org.kuali.rice.kew.api.WorkflowDocument; //导入方法依赖的package包/类
@Test public void testSuperUserApproveDisallowedOnFinalNode() throws Exception {
WorkflowDocument document = WorkflowDocumentFactory.createDocument(getPrincipalIdForName("ewestfal"), "SUApproveFinalNodeDisallowed");
document.route("");
// approve down to last node, at every step (except the last) jhopf should be able to su_approve
// omit "bmcgough", the last approver
String nodeBeforeLast = null;
for (String user: new String[] { "jhopf", "ewestfal", "rkirkend", "natjohns" }) {
document = WorkflowDocumentFactory.loadDocument(getPrincipalIdForName("jhopf"), document.getDocumentId());
System.err.println(document.getCurrentNodeNames());
nodeBeforeLast = document.getCurrentNodeNames().iterator().next();
assertTrue("jhopf should be able to SU Approve", document.isValidAction(ActionType.SU_BLANKET_APPROVE));
WorkflowDocumentFactory.loadDocument(getPrincipalIdForName(user), document.getDocumentId()).approve("");
}
document = WorkflowDocumentFactory.loadDocument(getPrincipalIdForName("jhopf"), document.getDocumentId());
// it's the last node, no SU Approve for you!
assertFalse("jhopf should NOT be able to SU Approve", document.isValidAction(ActionType.SU_BLANKET_APPROVE));
// move back a step
document = WorkflowDocumentFactory.loadDocument(getPrincipalIdForName("jhopf"), document.getDocumentId());
document.superUserReturnToPreviousNode(ReturnPoint.create("Split"), "returning to non-final node");
// now we can SU Approve
assertTrue("jhopf should be able to SU Approve", document.isValidAction(ActionType.SU_BLANKET_APPROVE));
document.superUserBlanketApprove("blanket approving as jhopf");
assertEquals("Document status incorrect", DocumentStatus.PROCESSED, document.getStatus());
assertFalse("jhopf should NOT be able to SU Approve", document.isValidAction(ActionType.SU_BLANKET_APPROVE));
List<ActionRequestValue> requests = KEWServiceLocator.getActionRequestService().findPendingByDoc(document.getDocumentId());
assertEquals("Should be active requests still", 5, requests.size());//number of acks and fyi's configured through rules
for (ActionRequestValue request: requests) {
System.err.println(request.getActionRequestedLabel() + " -> " + request.getPrincipal().getPrincipalName());
if (request.isApproveOrCompleteRequest()) {
fail("There should be no approve or complete requests after su approve. Found: " + request);
}
}
}