Uses of Class
org.trustdeck.dto.EntityInstanceDTO
Packages that use EntityInstanceDTO
-
Uses of EntityInstanceDTO in org.trustdeck.controller
Methods in org.trustdeck.controller with parameters of type EntityInstanceDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<?> EntityInstanceRESTController.createEntityInstance(String projectAbbreviation, String entityTypeName, EntityInstanceDTO entityInstanceDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to create a new instance of an entity type.org.springframework.http.ResponseEntity<?> EntityInstanceRESTController.recordLinkage(String projectAbbreviation, String entityTypeName, EntityInstanceDTO entityInstanceDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to check if there are entities in the database similar/equal to the given one.org.springframework.http.ResponseEntity<?> EntityInstanceRESTController.updateEntityInstance(String projectAbbreviation, String entityTypeName, String trustDeckId, EntityInstanceDTO entityInstanceDTO, String responseContentType, jakarta.servlet.http.HttpServletRequest request) Endpoint to update an entity instance object. -
Uses of EntityInstanceDTO in org.trustdeck.dto
Methods in org.trustdeck.dto that return EntityInstanceDTOModifier and TypeMethodDescriptionEntityInstanceDTO.assignPojoValues(EntityInstance pojo) EntityInstanceDTO.toReducedStandardView() -
Uses of EntityInstanceDTO in org.trustdeck.service
Methods in org.trustdeck.service that return EntityInstanceDTOModifier and TypeMethodDescriptionEntityInstanceDBService.createEntityInstance(EntityInstanceDTO entityInstanceDTO, jakarta.servlet.http.HttpServletRequest request) Method to insert a new entity instance into the database.EntityInstanceDBService.getEntityInstance(String trustDeckID, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity instance from the database by explicitly providing the trustDeckID as a String, which is unique in the database.EntityInstanceDBService.getEntityInstance(UUID trustDeckID, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity instance from the database by explicitly providing the trustDeckID, which is unique in the database.EntityInstanceDBService.getEntityInstance(EntityInstanceDTO entityInstance, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity instance from the database by providing an EntityInstanceDTO.EntityInstanceDBService.getEntityInstanceByData(org.jooq.JSONB data, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity instance from the database by providing the data JSON.EntityInstanceDBService.updateEntityInstance(long oldInstanceID, EntityInstanceDTO newEntityInstanceDTO, jakarta.servlet.http.HttpServletRequest request) Method to update an entity instance.Methods in org.trustdeck.service that return types with arguments of type EntityInstanceDTOModifier and TypeMethodDescriptionEntityInstanceDBService.searchEntityInstance(String query, jakarta.servlet.http.HttpServletRequest request) Method to search for entity instance.EntityInstanceDBService.searchRecordLinkageCandidates(int projectId, int entityTypeId, Map<String, com.fasterxml.jackson.databind.JsonNode> linkageValues, int limit, jakarta.servlet.http.HttpServletRequest request) Method to search for record linkage candidates that match a given set of attributes.Methods in org.trustdeck.service with parameters of type EntityInstanceDTOModifier and TypeMethodDescriptionEntityInstanceDBService.createEntityInstance(EntityInstanceDTO entityInstanceDTO, jakarta.servlet.http.HttpServletRequest request) Method to insert a new entity instance into the database.EntityInstanceDBService.getEntityInstance(EntityInstanceDTO entityInstance, jakarta.servlet.http.HttpServletRequest request) Method to retrieve an entity instance from the database by providing an EntityInstanceDTO.EntityInstanceDBService.updateEntityInstance(long oldInstanceID, EntityInstanceDTO newEntityInstanceDTO, jakarta.servlet.http.HttpServletRequest request) Method to update an entity instance.