Class ShortcutLinker

java.lang.Object
com.aquima.web.rest.v1.linker.impl.ShortcutLinker
All Implemented Interfaces:
IResourceLinker<Shortcut>

public class ShortcutLinker extends Object implements IResourceLinker<Shortcut>
Adds HATEOAS links to shortcut resources.
Since:
9.6
Author:
Petru Galanton
  • Constructor Details

    • ShortcutLinker

      public ShortcutLinker()
    • ShortcutLinker

      public ShortcutLinker(String sort)
  • Method Details

    • link

      public void link(Shortcut shortcut)
      Description copied from interface: IResourceLinker
      Adds HATEOAS links to the given resource.
      Specified by:
      link in interface IResourceLinker<Shortcut>
      Parameters:
      shortcut - the resource on which links should be added
    • link

      public void link(PagedObject<Shortcut> pagedObject, IPaginator<Shortcut> paginator)
      Description copied from interface: IResourceLinker
      Adds HATEOAS links to the given paged set of resources. Adds links both on the enclosing paged object (if pagination is enabled) and on the enclosed resources. Pagination ma
      Specified by:
      link in interface IResourceLinker<Shortcut>
      Parameters:
      pagedObject - the object enclosing a page of resources
      paginator - the paginator, used for determining whether paging is enabled, first page number, last page number, etc.