Package jadex.tools.web.jcc
Interface IJCCPluginService
-
- All Known Subinterfaces:
IJCCCloudviewService
,IJCCSecurityService
,IJCCStarterService
- All Known Implementing Classes:
JCCCloudviewPluginAgent
,JCCSecurityPluginAgent
,JCCStarterPluginAgent
public interface IJCCPluginService
Base interface for JCC plugin services. Must be extended by all JCC plugin interfaces and services.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.String>
getPluginComponent()
Get the plugin component (html).IFuture<java.lang.String>
getPluginName()
Get the plugin name.IFuture<java.lang.Integer>
getPriority()
Get the plugin priority.IFuture<byte[]>
loadResource(java.lang.String filename)
Load a string-based resource (style or js).
-
-
-
Method Detail
-
getPluginComponent
IFuture<java.lang.String> getPluginComponent()
Get the plugin component (html).- Returns:
- The plugin code.
-
getPluginName
IFuture<java.lang.String> getPluginName()
Get the plugin name.- Returns:
- The plugin name.
-
getPriority
IFuture<java.lang.Integer> getPriority()
Get the plugin priority.- Returns:
- The plugin priority.
-
loadResource
IFuture<byte[]> loadResource(java.lang.String filename)
Load a string-based resource (style or js).- Parameters:
filename
- The filename.- Returns:
- The text from the file.
-
-