Class ViewController
- java.lang.Object
-
- de.digitalcollections.iiif.demo.frontend.ViewController
-
@Controller public class ViewController extends Object
Demo controller for serving IIIF services on demo data.
-
-
Constructor Summary
Constructors Constructor Description ViewController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAbout(org.springframework.ui.Model model)StringgetDivaPage(String identifier, org.springframework.ui.Model model)StringgetHomepage(org.springframework.ui.Model model)StringgetImageInfoUrlDemo(org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)StringgetImageRequestUrlDemo(org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)StringgetLeafletImageViewerPage(String identifier, org.springframework.ui.Model model)StringgetLeafletManifestViewerPage(String identifier, org.springframework.ui.Model model)StringgetMiradorCanvasLinkPage(String identifier, org.springframework.ui.Model model)StringgetMiradorDownloadMenuPage(String identifier, org.springframework.ui.Model model)StringgetMiradorImageCropperPage(String identifier, org.springframework.ui.Model model)StringgetMiradorKeyboardNavigationPage(String identifier, org.springframework.ui.Model model)StringgetMiradorManifestButtonPage(String identifier, org.springframework.ui.Model model)StringgetMiradorMultiPageNavigationPage(String identifier, org.springframework.ui.Model model)StringgetMiradorPage(String identifier, org.springframework.ui.Model model)StringgetMiradorPhysicalRulerPage(String identifier, org.springframework.ui.Model model)StringgetMiradorViewFromUrlPage(String identifier, org.springframework.ui.Model model)StringgetOpenSeadragonPage(String identifier, org.springframework.ui.Model model)StringgetPresentationCollectionUrlDemo(String name, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)StringgetPresentationManifestUrlDemo(String identifier, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)StringgetTifyPage(String identifier, org.springframework.ui.Model model)StringgetUniversalViewerPage(String identifier, org.springframework.ui.Model model)
-
-
-
Method Detail
-
getHomepage
@RequestMapping(value={"","/"}, method=GET) public String getHomepage(org.springframework.ui.Model model)
-
getAbout
@RequestMapping(value="/about", method=GET) public String getAbout(org.springframework.ui.Model model)
-
getImageRequestUrlDemo
@RequestMapping(value="/image-request-url.html", method=GET) public String getImageRequestUrlDemo(org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)
-
getImageInfoUrlDemo
@RequestMapping(value="/image-info-url.html", method=GET) public String getImageInfoUrlDemo(org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)
-
getOpenSeadragonPage
@RequestMapping(value="/{identifier}/view_image.html", method=GET) public String getOpenSeadragonPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getLeafletImageViewerPage
@RequestMapping(value="/{identifier}/view_leaflet-image.html", method=GET) public String getLeafletImageViewerPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getPresentationManifestUrlDemo
@RequestMapping(value="/{identifier}/presentation-manifest-url.html", method=GET) public String getPresentationManifestUrlDemo(@PathVariable String identifier, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)
-
getPresentationCollectionUrlDemo
@RequestMapping(value="/{name}/presentation-collection-url.html", method=GET) public String getPresentationCollectionUrlDemo(@PathVariable String name, org.springframework.ui.Model model, javax.servlet.http.HttpServletRequest request)
-
getMiradorPage
@RequestMapping(value="/{identifier}/view_mirador.html", method=GET) public String getMiradorPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getUniversalViewerPage
@RequestMapping(value="/{identifier}/view_universal.html", method=GET) public String getUniversalViewerPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getTifyPage
@RequestMapping(value="/{identifier}/view_tify.html", method=GET) public String getTifyPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getLeafletManifestViewerPage
@RequestMapping(value="/{identifier}/view_leaflet-presentation.html", method=GET) public String getLeafletManifestViewerPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getDivaPage
@RequestMapping(value="/{identifier}/view_diva.html", method=GET) public String getDivaPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorCanvasLinkPage
@RequestMapping(value="/{identifier}/view_mirador_canvaslink.html", method=GET) public String getMiradorCanvasLinkPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorDownloadMenuPage
@RequestMapping(value="/{identifier}/view_mirador_downloadmenu.html", method=GET) public String getMiradorDownloadMenuPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorImageCropperPage
@RequestMapping(value="/{identifier}/view_mirador_imagecropper.html", method=GET) public String getMiradorImageCropperPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorKeyboardNavigationPage
@RequestMapping(value="/{identifier}/view_mirador_keyboardnavigation.html", method=GET) public String getMiradorKeyboardNavigationPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorManifestButtonPage
@RequestMapping(value="/{identifier}/view_mirador_manifestbutton.html", method=GET) public String getMiradorManifestButtonPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorMultiPageNavigationPage
@RequestMapping(value="/{identifier}/view_mirador_multipagenavigation.html", method=GET) public String getMiradorMultiPageNavigationPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
getMiradorPhysicalRulerPage
@RequestMapping(value="/{identifier}/view_mirador_physicalruler.html", method=GET) public String getMiradorPhysicalRulerPage(@PathVariable String identifier, org.springframework.ui.Model model)
-
-