diff --git a/src/main/java/de/digitalcollections/iiif/hymir/frontend/ExtendedViewController.java b/src/main/java/de/digitalcollections/iiif/hymir/frontend/ExtendedViewController.java index a761cea1..c07d7c1e 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/frontend/ExtendedViewController.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/frontend/ExtendedViewController.java @@ -23,7 +23,7 @@ * *

Provides direct access to viewer for external call. Can be overwritten with custom behaviour. */ -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version @Controller public class ExtendedViewController { diff --git a/src/main/java/de/digitalcollections/iiif/hymir/frontend/ViewController.java b/src/main/java/de/digitalcollections/iiif/hymir/frontend/ViewController.java index ad4f2762..8861c965 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/frontend/ViewController.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/frontend/ViewController.java @@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.RequestParam; /** Controller for serving different view pages. */ -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version @Controller public class ViewController { diff --git a/src/main/java/de/digitalcollections/iiif/hymir/image/business/ImageMetrics.java b/src/main/java/de/digitalcollections/iiif/hymir/image/business/ImageMetrics.java index d85e56d0..b815524f 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/image/business/ImageMetrics.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/image/business/ImageMetrics.java @@ -14,9 +14,7 @@ import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; -/** - * Small component to allow for convenient measurements of image data operations. - */ +/** Small component to allow for convenient measurements of image data operations. */ @Component public class ImageMetrics { public enum ImageDataOp { diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/PresentationRepositoryImpl.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/PresentationRepositoryImpl.java index 55ab5720..4cb71406 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/PresentationRepositoryImpl.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/PresentationRepositoryImpl.java @@ -27,7 +27,7 @@ * Manifest instance. */ @Repository -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version public class PresentationRepositoryImpl implements PresentationRepository { private static final String COLLECTION_PREFIX = "collection-"; diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/api/PresentationRepository.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/api/PresentationRepository.java index 7653375b..6e9ec551 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/api/PresentationRepository.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/backend/api/PresentationRepository.java @@ -9,7 +9,7 @@ import java.time.Instant; /** Interface to be implemented by project/user of this library. */ -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version public interface PresentationRepository { /** diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/PresentationServiceImpl.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/PresentationServiceImpl.java index d5a18f93..481a6c48 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/PresentationServiceImpl.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/PresentationServiceImpl.java @@ -15,7 +15,7 @@ import org.springframework.stereotype.Service; @Service -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version public class PresentationServiceImpl implements PresentationService { private final PresentationRepository presentationRepository; diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationSecurityService.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationSecurityService.java index b9a9f219..1d88ff42 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationSecurityService.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationSecurityService.java @@ -4,8 +4,7 @@ /** Service responsible for deciding if object (identified by identifier) is accessible. */ public interface PresentationSecurityService { - @Deprecated(forRemoval = true) // Will be gone with the next major version - + @Deprecated(forRemoval = true) // Will be gone with the next major version boolean isAccessAllowed(String identifier); default boolean isAccessAllowed(String identifier, HttpServletRequest req) { diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationService.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationService.java index f6c12f00..f7a59ea6 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationService.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/business/api/PresentationService.java @@ -14,7 +14,7 @@ import java.time.Instant; /** Service for IIIF Presentation API functionality. */ -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version public interface PresentationService { /** diff --git a/src/main/java/de/digitalcollections/iiif/hymir/presentation/frontend/IIIFPresentationApiController.java b/src/main/java/de/digitalcollections/iiif/hymir/presentation/frontend/IIIFPresentationApiController.java index 4aeca9e0..c4e62880 100644 --- a/src/main/java/de/digitalcollections/iiif/hymir/presentation/frontend/IIIFPresentationApiController.java +++ b/src/main/java/de/digitalcollections/iiif/hymir/presentation/frontend/IIIFPresentationApiController.java @@ -27,7 +27,7 @@ @Controller @RequestMapping("${custom.iiif.presentation.urlPrefix:/presentation/v2}") -@Deprecated(forRemoval = true) // Will be gone with the next major version +@Deprecated(forRemoval = true) // Will be gone with the next major version public class IIIFPresentationApiController { public static final String VERSION = "v2";