Package org.kuali.rice.kew.doctype.service

Examples of org.kuali.rice.kew.doctype.service.DocumentTypeService.save()


  public String updatePostProcessorName(String docTypeName, String replacement) {
    DocumentTypeService documentTypeService = GlobalResourceLoader.getService("enDocumentTypeService");
    DocumentType docTypeObj = DocumentType.from(documentTypeService.findByName(docTypeName));
    String originalPostProcessorName = docTypeObj.getPostProcessorName();
    docTypeObj.setPostProcessorName(replacement);
    documentTypeService.save(docTypeObj);
   
    return originalPostProcessorName;
  }
 
  /**
 
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.