Uses of Class
org.trustdeck.dto.EntityTypeDTO
Packages that use EntityTypeDTO
-
Uses of EntityTypeDTO in org.trustdeck.controller
Methods in org.trustdeck.controller with parameters of type EntityTypeDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?> EntityTypeRESTController.createBaseEntityType(EntityTypeDTO entityTypeDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to create base entity types in the system.org.springframework.http.ResponseEntity<?> EntityTypeRESTController.createProjectEntityType(String projectAbbreviation, EntityTypeDTO entityTypeDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to create a new type in the system.org.springframework.http.ResponseEntity<?> EntityTypeRESTController.updateEntityType(String projectAbbreviation, String oldEntityTypeName, EntityTypeDTO newEntityTypeDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to update entity types. -
Uses of EntityTypeDTO in org.trustdeck.dto
Methods in org.trustdeck.dto that return EntityTypeDTOModifier and TypeMethodDescriptionEntityTypeDTO.assignPojoValues(EntityType pojo) EntityTypeDTO.toReducedStandardView() -
Uses of EntityTypeDTO in org.trustdeck.service
Methods in org.trustdeck.service that return EntityTypeDTOModifier and TypeMethodDescriptionEntityTypeDBService.createEntityType(EntityTypeDTO entityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to insert a new entity type into the database.EntityTypeDBService.getEntityType(EntityTypeDTO entityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity type from the database by providing an EntityTypeDTO containing at least name and projectID.EntityTypeDBService.getEntityTypeById(int entityTypeId, Integer projectID, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity type from the database by explicitly providing the two variables name and projectID.EntityTypeDBService.getEntityTypeByName(String name, Integer projectID, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity type from the database by explicitly providing the two variables name and projectID.EntityTypeDBService.updateEntityType(EntityTypeDTO oldEntityTypeDTO, EntityTypeDTO newEntityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to update an entity type.Methods in org.trustdeck.service that return types with arguments of type EntityTypeDTOModifier and TypeMethodDescriptionEntityTypeDBService.searchEntityType(String query, int projectId, jakarta.servlet.http.HttpServletRequest request) Method to search for entity types.Methods in org.trustdeck.service with parameters of type EntityTypeDTOModifier and TypeMethodDescriptionEntityTypeDBService.createEntityType(EntityTypeDTO entityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to insert a new entity type into the database.booleanEntityTypeDBService.deleteEntityType(EntityTypeDTO type, jakarta.servlet.http.HttpServletRequest request) Method to delete an entity type.EntityTypeDBService.getEntityType(EntityTypeDTO entityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity type from the database by providing an EntityTypeDTO containing at least name and projectID.EntityTypeDBService.updateEntityType(EntityTypeDTO oldEntityTypeDTO, EntityTypeDTO newEntityTypeDTO, jakarta.servlet.http.HttpServletRequest request) Method to update an entity type.