Uses of Class
org.qubership.atp.mia.controllers.api.dto.ProcessShortDto
Packages that use ProcessShortDto
Package
Description
-
Uses of ProcessShortDto in org.qubership.atp.mia.controllers
Methods in org.qubership.atp.mia.controllers that return types with arguments of type ProcessShortDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ProcessShortDto>> MiaConfigurationController.deleteProcess(UUID projectId, UUID processId) org.springframework.http.ResponseEntity<List<ProcessShortDto>> MiaConfigurationController.getProcesses(UUID projectId) -
Uses of ProcessShortDto in org.qubership.atp.mia.controllers.api
Methods in org.qubership.atp.mia.controllers.api that return types with arguments of type ProcessShortDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<ProcessShortDto>> MiaConfigurationControllerApi.deleteProcess(UUID projectId, UUID processId) DELETE /configuration/{projectId}/process/{processId} Delete mia processorg.springframework.http.ResponseEntity<List<ProcessShortDto>> MiaConfigurationControllerApi.getProcesses(UUID projectId) GET /configuration/{projectId}/process Get mia all processes for the project -
Uses of ProcessShortDto in org.qubership.atp.mia.controllers.api.dto
Methods in org.qubership.atp.mia.controllers.api.dto that return ProcessShortDtoModifier and TypeMethodDescriptionProcessShortDto.addInCompoundsItem(UUID inCompoundsItem) ProcessShortDto.addInSectionsItem(UUID inSectionsItem) ProcessShortDto.inCompounds(List<UUID> inCompounds) ProcessShortDto.inSections(List<UUID> inSections) Methods in org.qubership.atp.mia.controllers.api.dto that return types with arguments of type ProcessShortDtoModifier and TypeMethodDescription@Valid List<@Valid ProcessShortDto> CompoundShortDto.getProcesses()Get processes@Valid List<@Valid ProcessShortDto> SectionsDto.getProcesses()Get processesMethods in org.qubership.atp.mia.controllers.api.dto with parameters of type ProcessShortDtoModifier and TypeMethodDescriptionCompoundShortDto.addProcessesItem(ProcessShortDto processesItem) SectionsDto.addProcessesItem(ProcessShortDto processesItem) Method parameters in org.qubership.atp.mia.controllers.api.dto with type arguments of type ProcessShortDtoModifier and TypeMethodDescriptionCompoundShortDto.processes(List<@Valid ProcessShortDto> processes) SectionsDto.processes(List<@Valid ProcessShortDto> processes) voidCompoundShortDto.setProcesses(List<@Valid ProcessShortDto> processes) voidSectionsDto.setProcesses(List<@Valid ProcessShortDto> processes) -
Uses of ProcessShortDto in org.qubership.atp.mia.service.configuration
Methods in org.qubership.atp.mia.service.configuration that return types with arguments of type ProcessShortDtoModifier and TypeMethodDescriptionProcessConfigurationService.deleteProcess(ProjectConfiguration projectConfiguration, UUID processId) Delete process.ProcessConfigurationService.processesDto(List<ProcessConfiguration> processConfigurationList) Map list of ProcessConfiguration to list of ProcessShortDto.