Uses of Enum Class
org.tailormap.api.persistence.UploadCategory
Packages that use UploadCategory
Package
Description
-
Uses of UploadCategory in org.tailormap.api.controller
Methods in org.tailormap.api.controller with parameters of type UploadCategoryModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<byte[]> UploadsController.getLatestUpload(UploadCategory category) Gets the latest upload for a specific category, if any.org.springframework.http.ResponseEntity<byte[]> LayerAttachedUploadsController.getLayerAttachedUpload(AppTreeLayerNode appTreeLayerNode, GeoService service, GeoServiceLayer layer, Application application, jakarta.servlet.http.HttpServletRequest request, UploadCategory category, UUID id, String filename) org.springframework.http.ResponseEntity<byte[]> UploadsController.getUpload(jakarta.servlet.http.HttpServletRequest request, UploadCategory category, UUID id, String filename) -
Uses of UploadCategory in org.tailormap.api.controller.admin
Methods in org.tailormap.api.controller.admin with parameters of type UploadCategoryModifier and TypeMethodDescriptionUploadsAdminController.findUploadsByHash(UploadCategory category, List<String> hashes) org.springframework.http.ResponseEntity<byte[]> UploadsAdminController.getUpload(UploadCategory category, UUID id, String filename) -
Uses of UploadCategory in org.tailormap.api.persistence
Subclasses with type arguments of type UploadCategory in org.tailormap.api.persistenceMethods in org.tailormap.api.persistence that return UploadCategoryModifier and TypeMethodDescriptionUpload.getCategory()static UploadCategoryReturns the enum constant of this class with the specified name.static UploadCategory[]UploadCategory.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.tailormap.api.persistence with parameters of type UploadCategory -
Uses of UploadCategory in org.tailormap.api.persistence.helper
Methods in org.tailormap.api.persistence.helper with parameters of type UploadCategoryModifier and TypeMethodDescriptionUploadHelper.getUrlForImage(String imageId, UploadCategory category) UploadHelper.getUrlForImage(UUID imageId, UploadCategory category) UploadHelper.getUrlForLayerAttachedImage(UUID imageId, UploadCategory category, Application application, String layerId) Returns the URL for a layer-attached image e.g. a legend image, or null if the imageId is null or not found. -
Uses of UploadCategory in org.tailormap.api.persistence.projections
Methods in org.tailormap.api.persistence.projections that return UploadCategory -
Uses of UploadCategory in org.tailormap.api.repository
Methods in org.tailormap.api.repository with parameters of type UploadCategoryModifier and TypeMethodDescriptionUploadRepository.findByCategory(@NonNull UploadCategory category) UploadRepository.findByHashIn(@NonNull UploadCategory category, @NonNull List<String> hashes) UploadRepository.findByIdAndCategory(@NonNull UUID id, @NonNull UploadCategory category) UploadRepository.findFirstWithContentByCategoryOrderByLastModifiedDesc(@NonNull UploadCategory category) UploadRepository.findWithContentByCategoryAndFilename(@NonNull UploadCategory category, @NonNull String filename) UploadRepository.findWithContentByIdAndCategory(@NonNull UUID id, @NonNull UploadCategory category)