Interface ClientResourcePlugin

All Superinterfaces:
Plugin, Public

public interface ClientResourcePlugin extends Plugin
Definition of a plug-in providing resource urls to be loaded in webedit.
Since:
5.2.25
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull List<String>
    Provides a list of relative or absolute javascript urls to be loaded in webedit.
    @NotNull List<String>
    Provides a list of relative or absolute stylesheet/css urls to be loaded in webedit.

    Methods inherited from interface de.espirit.firstspirit.client.plugin.Plugin

    setUp, tearDown
  • Method Details

    • getScriptUrls

      @NotNull @NotNull List<String> getScriptUrls()
      Provides a list of relative or absolute javascript urls to be loaded in webedit. The base-url for the relative urls is the webedit webapp context path (e.g. /fs5webedit/).
      Returns:
      a list of javascript urls which should be loaded in webedit.
      Since:
      5.2.25
    • getStylesheetUrls

      @NotNull @NotNull List<String> getStylesheetUrls()
      Provides a list of relative or absolute stylesheet/css urls to be loaded in webedit. The base-url for the relative urls is the webedit webapp context path (e.g. /fs5webedit/).
      Returns:
      a list of stylesheet/css urls which should be loaded in webedit.
      Since:
      5.2.25