Class ViewController
- java.lang.Object
-
- de.digitalcollections.iiif.hymir.frontend.ViewController
-
@Deprecated(forRemoval=true) @Controller public class ViewController extends Object
Deprecated, for removal: This API element is subject to removal in a future version.Controller for serving different view pages.
-
-
Constructor Summary
Constructors Constructor Description ViewController()Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringviewHomepage(org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.StringviewImageGet(String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.StringviewImagePost(String identifier)Deprecated, for removal: This API element is subject to removal in a future version.StringviewPresentationCollection(String name)Deprecated, for removal: This API element is subject to removal in a future version.StringviewPresentationGet(String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.StringviewPresentationManifest(String identifier)Deprecated, for removal: This API element is subject to removal in a future version.StringviewPresentationPost(String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Method Detail
-
viewHomepage
@RequestMapping(value={"","/"}, method=GET) public String viewHomepage(org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.
-
viewImageGet
@RequestMapping(value="/image/{identifier}/view.html", method=GET) public String viewImageGet(@PathVariable String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.
-
viewImagePost
@RequestMapping(value="/image/view", method=POST) public String viewImagePost(@RequestParam String identifier)Deprecated, for removal: This API element is subject to removal in a future version.
-
viewPresentationPost
@RequestMapping(value="/presentation/view", method=POST) public String viewPresentationPost(@RequestParam String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.
-
viewPresentationGet
@RequestMapping(value="/presentation/view/{identifier}", method=GET) public String viewPresentationGet(@PathVariable String identifier, org.springframework.ui.Model model)Deprecated, for removal: This API element is subject to removal in a future version.
-
viewPresentationManifest
@RequestMapping(value="/presentation/manifest", method=GET) public String viewPresentationManifest(@RequestParam String identifier)Deprecated, for removal: This API element is subject to removal in a future version.
-
-