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, String idString, 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) -
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 that return types with arguments of type UploadCategoryModifier and TypeMethodDescriptionstatic List<UploadCategory> UploadCategory.getRestrictedCategories()static List<UploadCategory> UploadCategory.getUnrestrictedCategories()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) -
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)