Interface OpenRedirectExtension

All Superinterfaces:
PluginExtension

@API(type=EXTENDABLE, src=PUBLIC) public interface OpenRedirectExtension extends PluginExtension
Plugin extension - open redirecting for URLs
  • Method Summary

    Modifier and Type
    Method
    Description
    This call back can redirect an open call for an URL in different parts of Oxygen.
  • Method Details

    • redirect

      OpenRedirectInformation[] redirect(URL url)
      This call back can redirect an open call for an URL in different parts of Oxygen. For example if you want to open a certain XML file from a ZIP archive, when the callback is received for the archive URL you can return two OpenRedirectInformation objects (one with the URL of the archive and the content type of the archive browser and the other with the URL of the file inside the archive and the content type "null" for auto-detection or text/xml).
      Parameters:
      url - The URL which will get opened in Oxygen
      Returns:
      null if the plugin lets the default behavior take place. Empty array if the plugin chooses not to open anything An array of redirect information objects which will direct Oxygen to open them with the specified content types.