Uses of Class
org.dspace.scripts.Process
Packages that use Process
Package
Description
-
Uses of Process in org.dspace.content.dao
Methods in org.dspace.content.dao that return types with arguments of type ProcessModifier and TypeMethodDescriptionReturns a list of all Process objects in the databaseProcessDAO.findAllSortByScript(Context context) This method will return all the Process objects in the database in a list and it'll be sorted by script nameProcessDAO.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.ProcessDAO.findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Instant date) Find all the processes with one of the given status and with a creation time older than the specified date.ProcessDAO.findByUser(Context context, EPerson user, int limit, int offset) Returns a list of all Process objects in the database by the given user.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 ProcessModifier and TypeMethodDescriptionProcessDAOImpl.findAllSortByScript(Context context) ProcessDAOImpl.findAllSortByStartTime(Context context) ProcessDAOImpl.findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Instant date) ProcessDAOImpl.findByUser(Context context, EPerson user, int limit, int offset) 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 ProcessModifier and TypeFieldDescriptionProcess_.bitstreamsstatic jakarta.persistence.metamodel.EntityType<Process>Process_.class_Process_.creationTimeProcess_.ePersonProcess_.finishedTimeProcess_.groupsProcess_.nameProcess_.parametersProcess_.processIdstatic jakarta.persistence.metamodel.SingularAttribute<Process,ProcessStatus> Process_.processStatusProcess_.startTimeMethods in org.dspace.scripts that return ProcessModifier and TypeMethodDescriptionProcessServiceImpl.create(Context context, EPerson ePerson, String scriptName, List<DSpaceCommandLineParameter> parameters, Set<Group> specialGroups) Methods in org.dspace.scripts that return types with arguments of type ProcessModifier and TypeMethodDescriptionProcessServiceImpl.findAllSortByScript(Context context) ProcessServiceImpl.findAllSortByStartTime(Context context) ProcessServiceImpl.findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Instant date) ProcessServiceImpl.findByUser(Context context, EPerson eperson, int limit, int offset) ProcessServiceImpl.search(Context context, ProcessQueryParameterContainer processQueryParameterContainer, int limit, int offset) Methods in org.dspace.scripts with parameters of type ProcessModifier and TypeMethodDescriptionvoidProcessServiceImpl.appendFile(Context context, Process process, InputStream is, String type, String fileName) voidvoidProcessServiceImpl.createLogBitstream(Context context, Process process) voidvoidProcessServiceImpl.getBitstream(Context context, Process process, String type) ProcessServiceImpl.getBitstreamByName(Context context, Process process, String bitstreamName) ProcessServiceImpl.getBitstreams(Context context, Process process) ProcessServiceImpl.getFileTypesForProcessBitstreams(Context context, Process process) ProcessServiceImpl.getParameters(Process process) voidvoid -
Uses of Process in org.dspace.scripts.service
Methods in org.dspace.scripts.service that return ProcessModifier and TypeMethodDescriptionProcessService.create(Context context, EPerson ePerson, String scriptName, List<DSpaceCommandLineParameter> parameters, Set<Group> specialGroups) This method will create a Process object in the databaseThis 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 ProcessModifier and TypeMethodDescriptionReturns a list of all Process objects in the databaseReturns a list of all Process objects in the databaseProcessService.findAllSortByScript(Context context) Returns a list of all Process objects in the database sorted by script nameProcessService.findAllSortByStartTime(Context context) Returns a list of all Process objects in the database sorted by start time The most recent one will be shown firstProcessService.findByStatusAndCreationTimeOlderThan(Context context, List<ProcessStatus> statuses, Instant date) Find all the processes with one of the given status and with a creation time older than the specified date.ProcessService.findByUser(Context context, EPerson user, int limit, int offset) Returns a list of all Process objects in the database by the given user.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 ProcessModifier and TypeMethodDescriptionvoidProcessService.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 processvoidThis method will perform the logic needed to update the Process object in the database to represent a complete statevoidProcessService.createLogBitstream(Context context, Process process) voidThis method will delete the given Process object from the databasevoidThis method will perform the logic needed to update the Process object in the database to represent a failed stateProcessService.getBitstream(Context context, Process process, String type) This method will return the Bitstream for a given process with a given typeProcessService.getBitstreamByName(Context context, Process process, String bitstreamName) This method will return the Bitstream that matches the given name for the given ProcessProcessService.getBitstreams(Context context, Process process) This method will return all the Bitstreams for a given processProcessService.getFileTypesForProcessBitstreams(Context context, Process process) This will return a list of Strings where each String represents the type of a Bitstream in the Process givenProcessService.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 DSpacevoidThis method will perform the logic needed to update the Process object in the database to represent a started state.voidThis method will be used to update the given Process object in the database