Uses of Class
org.qubership.atp.mia.controllers.api.dto.SectionDto
Packages that use SectionDto
Package
Description
-
Uses of SectionDto in org.qubership.atp.mia.controllers
Methods in org.qubership.atp.mia.controllers with parameters of type SectionDtoModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.addSection(UUID projectId, SectionDto sectionDto) org.springframework.http.ResponseEntity<List<SectionsDto>> MiaConfigurationController.updateSection(UUID projectId, SectionDto sectionDto) -
Uses of SectionDto in org.qubership.atp.mia.controllers.api
Methods in org.qubership.atp.mia.controllers.api with parameters of type SectionDtoModifier 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.updateSection(UUID projectId, @Valid SectionDto sectionDto) PUT /configuration/{projectId}/section Update mia section -
Uses of SectionDto in org.qubership.atp.mia.controllers.api.dto
Methods in org.qubership.atp.mia.controllers.api.dto that return SectionDtoModifier and TypeMethodDescriptionSectionDto.addCompoundsItem(CompoundDto compoundsItem) SectionDto.addProcessesItem(ProcessDto processesItem) SectionDto.addSectionsItem(SectionDto sectionsItem) SectionDto.compounds(List<@Valid CompoundDto> compounds) SectionDto.parentSection(UUID parentSection) SectionDto.processes(List<@Valid ProcessDto> processes) SectionDto.sections(List<@Valid SectionDto> sections) Methods in org.qubership.atp.mia.controllers.api.dto that return types with arguments of type SectionDtoModifier and TypeMethodDescription@Valid List<@Valid SectionDto> SectionDto.getSections()Get sectionsMethods in org.qubership.atp.mia.controllers.api.dto with parameters of type SectionDtoMethod parameters in org.qubership.atp.mia.controllers.api.dto with type arguments of type SectionDtoModifier and TypeMethodDescriptionSectionDto.sections(List<@Valid SectionDto> sections) voidSectionDto.setSections(List<@Valid SectionDto> sections) -
Uses of SectionDto in org.qubership.atp.mia.service.configuration
Methods in org.qubership.atp.mia.service.configuration with parameters of type SectionDtoModifier and TypeMethodDescriptionSectionConfigurationService.addSection(ProjectConfiguration projectConfiguration, SectionDto sectionDto) Add section.SectionConfigurationService.updateSection(ProjectConfiguration projectConfiguration, SectionDto sectionDto) Update section.