Interface IPluginFormDesignerResourceGetResourceParams
-
- All Superinterfaces:
Serializable
public interface IPluginFormDesignerResourceGetResourceParams extends Serializable
Parameters that are passed to the form designer resource plugins. Can be used to modify the JavaScript or CSS resource.- Since:
- 8.1.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBaseUrl()
Get the base URL to the formcycle application, including the scheme, the domain, the port, and the context path, including a final slash at the end, e.g.Locale
getLocale()
Gets the current language of the workflow designer.boolean
isDevMode()
Gets whether the application was started in development mode.
-
-
-
Method Detail
-
getBaseUrl
String getBaseUrl()
Get the base URL to the formcycle application, including the scheme, the domain, the port, and the context path, including a final slash at the end, e.g.http://localhost:8080/xima-formcycle/
.- Returns:
- The base URL of the formcycle application.
-
getLocale
Locale getLocale()
Gets the current language of the workflow designer. You can use this parameter to include localized message in the script.- Returns:
- The current language of the workflow designer
-
isDevMode
boolean isDevMode()
Gets whether the application was started in development mode. May be used to deliver uncompressed files with an inline source maps for development.- Returns:
- Whether the application is started in development mode.
-
-