Interface ExternalContent

    • Method Detail

      • getContentType

        String getContentType()
        Returns the content type located in the link header.
        Returns:
        content type if in Link header, else null
      • getContentSize

        long getContentSize()
        Returns the size of the content located at the link header
        Returns:
        content size
      • getHandling

        String getHandling()
        Retrieve handling information
        Returns:
        a String containing the type of handling requested ["proxy", "copy" or "redirect"]
      • getURL

        String getURL()
        Retrieve url in link header
        Returns:
        a String of the URL that was in the Link header
      • getURI

        URI getURI()
        Retrieve URI in link header
        Returns:
        a URI to the external content
      • isCopy

        boolean isCopy()
        Returns whether or not the handling parameter is "copy"
        Returns:
        boolean value representing whether or not the content handling is "copy"
      • isRedirect

        boolean isRedirect()
        Returns whether or not the handling parameter is "redirect"
        Returns:
        boolean value representing whether or not the content handling is "redirect"
      • isProxy

        boolean isProxy()
        Returns whether or not the handling parameter is "proxy"
        Returns:
        boolean value representing whether or not the content handling is "proxy"