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.List<Process>ProcessDAO. findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Date date)Find all the processes with one of the given status and with a creation time older than the specified date.List<Process>ProcessDAO. findByUser(Context context, EPerson user, int limit, int offset)Returns a list of all Process objects in the database by the given user.List<Process>ProcessDAO. search(Context context, ProcessQueryParameterContainer processQueryParameterContainer, int limit, int offset)Returns a list of all Processes in the database which match the given field requirements. -
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)List<Process>ProcessDAOImpl. findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Date date)List<Process>ProcessDAOImpl. findByUser(Context context, EPerson user, int limit, int offset)List<Process>ProcessDAOImpl. search(Context context, ProcessQueryParameterContainer processQueryParameterContainer, int limit, int offset) -
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.ListAttribute<Process,Group>Process_. groupsstatic 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, Set<Group> specialGroups)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)List<Process>ProcessServiceImpl. findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Date date)List<Process>ProcessServiceImpl. findByUser(Context context, EPerson eperson, int limit, int offset)List<Process>ProcessServiceImpl. search(Context context, ProcessQueryParameterContainer processQueryParameterContainer, int limit, int offset)Methods in org.dspace.scripts with parameters of type Process Modifier and Type Method Description voidProcessServiceImpl. appendFile(Context context, Process process, InputStream is, String type, String fileName)voidProcessServiceImpl. complete(Context context, Process process)voidProcessServiceImpl. createLogBitstream(Context context, Process process)voidProcessServiceImpl. delete(Context context, Process process)voidProcessServiceImpl. fail(Context context, Process process)BitstreamProcessServiceImpl. getBitstream(Context context, Process process, String type)BitstreamProcessServiceImpl. getBitstreamByName(Context context, Process process, String bitstreamName)List<Bitstream>ProcessServiceImpl. getBitstreams(Context context, Process process)List<String>ProcessServiceImpl. getFileTypesForProcessBitstreams(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, Set<Group> specialGroups)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 firstList<Process>ProcessService. findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Date date)Find all the processes with one of the given status and with a creation time older than the specified date.List<Process>ProcessService. findByUser(Context context, EPerson user, int limit, int offset)Returns a list of all Process objects in the database by the given user.List<Process>ProcessService. search(Context context, ProcessQueryParameterContainer processQueryParameterContainer, int limit, int offset)Returns a list of all Processes in the database which match the given field requirements.Methods in org.dspace.scripts.service with parameters of type Process Modifier and Type Method Description voidProcessService. appendFile(Context context, Process process, InputStream is, String type, String fileName)The method will create a bitstream from the given inputstream with the given type as metadata and given name as name and attach it to the given processvoidProcessService. 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. createLogBitstream(Context context, Process process)voidProcessService. 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 stateBitstreamProcessService. getBitstream(Context context, Process process, String type)This method will return the Bitstream for a given process with a given typeBitstreamProcessService. getBitstreamByName(Context context, Process process, String bitstreamName)This method will return the Bitstream that matches the given name for the given ProcessList<Bitstream>ProcessService. getBitstreams(Context context, Process process)This method will return all the Bitstreams for a given processList<String>ProcessService. getFileTypesForProcessBitstreams(Context context, Process process)This will return a list of Strings where each String represents the type of a Bitstream in the Process givenList<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
-