Uses of Class
org.qubership.atp.mia.controllers.api.dto.SectionsDto
Packages that use SectionsDto
Package
Description
-
Uses of SectionsDto in org.qubership.atp.mia.controllers
Methods in org.qubership.atp.mia.controllers that return types with arguments of type SectionsDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.addSection(UUID projectId, SectionDto sectionDto) org.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.deleteSection(UUID projectId, UUID sectionId) org.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.getSections(UUID projectId) org.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.updateSection(UUID projectId, SectionDto sectionDto) -
Uses of SectionsDto in org.qubership.atp.mia.controllers.api
Methods in org.qubership.atp.mia.controllers.api that return types with arguments of type SectionsDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationControllerApi.addSection(UUID projectId, @Valid SectionDto sectionDto) POST /configuration/{projectId}/section Add mia sectionorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationControllerApi.deleteSection(UUID projectId, UUID sectionId) DELETE /configuration/{projectId}/section/{sectionId} Delete mia sectionorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationControllerApi.getSections(UUID projectId) GET /configuration/{projectId}/section Get mia sections hierarchyorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationControllerApi.updateSection(UUID projectId, @Valid SectionDto sectionDto) PUT /configuration/{projectId}/section Update mia section -
Uses of SectionsDto in org.qubership.atp.mia.controllers.api.dto
Methods in org.qubership.atp.mia.controllers.api.dto that return SectionsDtoModifier and TypeMethodDescriptionSectionsDto.addCompoundsItem(CompoundShortDto compoundsItem) SectionsDto.addProcessesItem(ProcessShortDto processesItem) SectionsDto.addSectionsItem(SectionsDto sectionsItem) SectionsDto.compounds(List<@Valid CompoundShortDto> compounds) SectionsDto.parentSection(UUID parentSection) SectionsDto.place(BigDecimal place) SectionsDto.processes(List<@Valid ProcessShortDto> processes) SectionsDto.sections(List<@Valid SectionsDto> sections) Methods in org.qubership.atp.mia.controllers.api.dto that return types with arguments of type SectionsDtoModifier and TypeMethodDescription@Valid List<@Valid SectionsDto> SectionsDto.getSections()Get sectionsMethods in org.qubership.atp.mia.controllers.api.dto with parameters of type SectionsDtoMethod parameters in org.qubership.atp.mia.controllers.api.dto with type arguments of type SectionsDtoModifier and TypeMethodDescriptionSectionsDto.sections(List<@Valid SectionsDto> sections) voidSectionsDto.setSections(List<@Valid SectionsDto> sections) -
Uses of SectionsDto in org.qubership.atp.mia.service.configuration
Methods in org.qubership.atp.mia.service.configuration that return types with arguments of type SectionsDtoModifier and TypeMethodDescriptionSectionConfigurationService.addSection(ProjectConfiguration projectConfiguration, SectionDto sectionDto) Add section.SectionConfigurationService.deleteSection(ProjectConfiguration projectConfiguration, UUID sectionId) Delete section.SectionConfigurationService.sectionsDto(List<SectionConfiguration> sectionConfigurationList) Map list of SectionConfiguration to list of SectionsDto.SectionConfigurationService.updateSection(ProjectConfiguration projectConfiguration, SectionDto sectionDto) Update section.