Uses of Class
org.qubership.atp.mia.controllers.api.dto.ProjectFileDto
Packages that use ProjectFileDto
Package
Description
-
Uses of ProjectFileDto in org.qubership.atp.mia.controllers
Methods in org.qubership.atp.mia.controllers with parameters of type ProjectFileDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> MiaConfigurationController.addProjectFile(UUID projectId, ProjectFileDto projectFileDto, org.springframework.web.multipart.MultipartFile file) org.springframework.http.ResponseEntity<Void> MiaConfigurationController.updateProjectFile(UUID projectId, ProjectFileDto projectFileDto, org.springframework.web.multipart.MultipartFile file) -
Uses of ProjectFileDto in org.qubership.atp.mia.controllers.api
Methods in org.qubership.atp.mia.controllers.api with parameters of type ProjectFileDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<Void> MiaConfigurationControllerApi.addProjectFile(UUID projectId, @Valid ProjectFileDto projectFile, org.springframework.web.multipart.MultipartFile file) POST /configuration/{projectId}/projectFile Add mia project fileorg.springframework.http.ResponseEntity<Void> MiaConfigurationControllerApi.updateProjectFile(UUID projectId, @Valid ProjectFileDto projectFile, org.springframework.web.multipart.MultipartFile file) PUT /configuration/{projectId}/projectFile Update mia project file -
Uses of ProjectFileDto in org.qubership.atp.mia.controllers.api.dto
Methods in org.qubership.atp.mia.controllers.api.dto that return ProjectFileDtoModifier and TypeMethodDescriptionProjectFileDto.lastUpdateBy(String lastUpdateBy) ProjectFileDto.lastUpdateWhen(String lastUpdateWhen) ProjectFileDto.size(BigDecimal size) Methods in org.qubership.atp.mia.controllers.api.dto that return types with arguments of type ProjectFileDtoModifier and TypeMethodDescription@Valid List<@Valid ProjectFileDto> ProjectDirectoriesDto.getFiles()Get filesMethods in org.qubership.atp.mia.controllers.api.dto with parameters of type ProjectFileDtoMethod parameters in org.qubership.atp.mia.controllers.api.dto with type arguments of type ProjectFileDtoModifier and TypeMethodDescriptionProjectDirectoriesDto.files(List<@Valid ProjectFileDto> files) voidProjectDirectoriesDto.setFiles(List<@Valid ProjectFileDto> files) -
Uses of ProjectFileDto in org.qubership.atp.mia.service.configuration
Methods in org.qubership.atp.mia.service.configuration with parameters of type ProjectFileDtoModifier and TypeMethodDescriptionvoidFileConfigurationService.addProjectFile(ProjectConfiguration projectConfiguration, org.springframework.web.multipart.MultipartFile file, ProjectFileDto projectFileDto) Add file.voidFileConfigurationService.updateProjectFile(ProjectConfiguration projectConfiguration, org.springframework.web.multipart.MultipartFile file, ProjectFileDto projectFileDto) Update file.