Uses of Class
org.dspace.scripts.Process
-
Packages that use Process Package Description org.dspace.content.dao org.dspace.content.dao.impl org.dspace.scripts org.dspace.scripts.service -
-
Uses of Process in org.dspace.content.dao
Methods in org.dspace.content.dao that return types with arguments of type Process Modifier and Type Method Description List<Process>ProcessDAO. findAll(Context context, int limit, int offset)Returns a list of all Process objects in the databaseList<Process>ProcessDAO. findAllSortByScript(Context context)This method will return all the Process objects in the database in a list and it'll be sorted by script nameList<Process>ProcessDAO. findAllSortByStartTime(Context context)This method will return all the Process objects in the database in a list and it'll be sorted by start time. -
Uses of Process in org.dspace.content.dao.impl
Methods in org.dspace.content.dao.impl that return types with arguments of type Process Modifier and Type Method Description List<Process>ProcessDAOImpl. findAll(Context context, int limit, int offset)List<Process>ProcessDAOImpl. findAllSortByScript(Context context)List<Process>ProcessDAOImpl. findAllSortByStartTime(Context context) -
Uses of Process in org.dspace.scripts
Fields in org.dspace.scripts with type parameters of type Process Modifier and Type Field Description static javax.persistence.metamodel.ListAttribute<Process,Bitstream>Process_. bitstreamsstatic javax.persistence.metamodel.SingularAttribute<Process,Date>Process_. creationTimestatic javax.persistence.metamodel.SingularAttribute<Process,EPerson>Process_. ePersonstatic javax.persistence.metamodel.SingularAttribute<Process,Date>Process_. finishedTimestatic javax.persistence.metamodel.SingularAttribute<Process,String>Process_. namestatic javax.persistence.metamodel.SingularAttribute<Process,String>Process_. parametersstatic javax.persistence.metamodel.SingularAttribute<Process,Integer>Process_. processIdstatic javax.persistence.metamodel.SingularAttribute<Process,ProcessStatus>Process_. processStatusstatic javax.persistence.metamodel.SingularAttribute<Process,Date>Process_. startTimeMethods in org.dspace.scripts that return Process Modifier and Type Method Description ProcessProcessServiceImpl. create(Context context, EPerson ePerson, String scriptName, List<DSpaceCommandLineParameter> parameters)ProcessProcessServiceImpl. find(Context context, int processId)Methods in org.dspace.scripts that return types with arguments of type Process Modifier and Type Method Description List<Process>ProcessServiceImpl. findAll(Context context)List<Process>ProcessServiceImpl. findAll(Context context, int limit, int offset)List<Process>ProcessServiceImpl. findAllSortByScript(Context context)List<Process>ProcessServiceImpl. findAllSortByStartTime(Context context)Methods in org.dspace.scripts with parameters of type Process Modifier and Type Method Description voidProcessServiceImpl. complete(Context context, Process process)voidProcessServiceImpl. delete(Context context, Process process)voidProcessServiceImpl. fail(Context context, Process process)List<DSpaceCommandLineParameter>ProcessServiceImpl. getParameters(Process process)voidProcessServiceImpl. start(Context context, Process process)voidProcessServiceImpl. update(Context context, Process process) -
Uses of Process in org.dspace.scripts.service
Methods in org.dspace.scripts.service that return Process Modifier and Type Method Description ProcessProcessService. create(Context context, EPerson ePerson, String scriptName, List<DSpaceCommandLineParameter> parameters)This method will create a Process object in the databaseProcessProcessService. find(Context context, int processId)This method will retrieve a Process object from the Database with the given IDMethods in org.dspace.scripts.service that return types with arguments of type Process Modifier and Type Method Description List<Process>ProcessService. findAll(Context context)Returns a list of all Process objects in the databaseList<Process>ProcessService. findAll(Context context, int limit, int offset)Returns a list of all Process objects in the databaseList<Process>ProcessService. findAllSortByScript(Context context)Returns a list of all Process objects in the database sorted by script nameList<Process>ProcessService. findAllSortByStartTime(Context context)Returns a list of all Process objects in the database sorted by start time The most recent one will be shown firstMethods in org.dspace.scripts.service with parameters of type Process Modifier and Type Method Description voidProcessService. complete(Context context, Process process)This method will perform the logic needed to update the Process object in the database to represent a complete statevoidProcessService. delete(Context context, Process process)This method will delete the given Process object from the databasevoidProcessService. fail(Context context, Process process)This method will perform the logic needed to update the Process object in the database to represent a failed stateList<DSpaceCommandLineParameter>ProcessService. getParameters(Process process)This method will retrieve the list of parameters from the Process in its String format and it will parse these parameters to a list ofDSpaceCommandLineParameterobjects for better usability throughout DSpacevoidProcessService. start(Context context, Process process)This method will perform the logic needed to update the Process object in the database to represent a started state.voidProcessService. update(Context context, Process process)This method will be used to update the given Process object in the database
-