Package com.dotmarketing.portlets.workflows.business

Examples of com.dotmarketing.portlets.workflows.business.WorkFlowFactory


        List<String> identsDeleted = new ArrayList<String>();
        for (Contentlet con : contentlets) {
            cc.remove(con.getInode());

            // delete workflow task for contentlet
            WorkFlowFactory wff = FactoryLocator.getWorkFlowFactory();
            WorkflowTask wft = wff.findTaskByContentlet(con);
            if ( InodeUtils.isSet(wft.getInode() ) ) {
                wff.deleteWorkflowTask(wft);
            }

           
            if(InodeUtils.isSet(con.getInode())){
                APILocator.getPermissionAPI().removePermissions(con);
View Full Code Here


  }

  public static void deleteStructure(Structure structure) throws DotHibernateException, DotDataException
  {

    WorkFlowFactory wff = FactoryLocator.getWorkFlowFactory();
    wff.deleteSchemeForStruct(structure.getInode());
    InodeFactory.deleteInode(structure);
  }
View Full Code Here

TOP

Related Classes of com.dotmarketing.portlets.workflows.business.WorkFlowFactory

Copyright © 2018 www.massapicom. 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.