Uses of Class
org.trustdeck.dto.DomainDTO
Packages that use DomainDTO
-
Uses of DomainDTO in org.trustdeck.controller
Methods in org.trustdeck.controller with parameters of type DomainDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?> DomainRESTController.createDomain(DomainDTO domainDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Method to create a new domain with a reduced set of attributes.org.springframework.http.ResponseEntity<?> DomainRESTController.createDomainComplete(DomainDTO domainDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Method to create a new domain.org.springframework.http.ResponseEntity<?> DomainRESTController.updateDomain(String oldDomainName, DomainDTO domainDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Method to update a domain with a reduced set of updatable attributes.org.springframework.http.ResponseEntity<?> DomainRESTController.updateDomainComplete(String oldDomainName, Boolean performRecursiveChanges, DomainDTO domainDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Method to update a domain. -
Uses of DomainDTO in org.trustdeck.dto
Methods in org.trustdeck.dto that return DomainDTOModifier and TypeMethodDescriptionDomainDTO.assignPojoValues(IDomain pojo) Maps all values from jOOQ's Domain object to a DomainDTO object.DomainDTO.toReducedStandardView()This method creates a reduced standard view by setting all attributes that shouldn't be displayed by default tonull, so that they are excluded in the JSON representation. -
Uses of DomainDTO in org.trustdeck.service
Methods in org.trustdeck.service that return types with arguments of type DomainDTOModifier and TypeMethodDescriptionDomainDBAccessService.getSubtreeFromDomainName(String domainName, jakarta.servlet.http.HttpServletRequest request) Helper method that creates the subtree of a domain starting from the given domain.DomainDBAccessService.listDomains(jakarta.servlet.http.HttpServletRequest request) This method lists all domains from the database.