Class AbstractCockpitPlugin
- java.lang.Object
-
- org.camunda.bpm.webapp.plugin.spi.impl.AbstractAppPlugin
-
- org.camunda.bpm.cockpit.plugin.spi.impl.AbstractCockpitPlugin
-
- All Implemented Interfaces:
CockpitPlugin
,AppPlugin
- Direct Known Subclasses:
CockpitPlugins
public abstract class AbstractCockpitPlugin extends AbstractAppPlugin implements CockpitPlugin
An implementation ofCockpitPlugin
that comes with reasonable defaults.- Author:
- nico.rehwaldt
- See Also:
CockpitPlugin
-
-
Constructor Summary
Constructors Constructor Description AbstractCockpitPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getMappingFiles()
Returns a list of mapping files that define the custom queries provided by this plugin.-
Methods inherited from class org.camunda.bpm.webapp.plugin.spi.impl.AbstractAppPlugin
getAssetDirectory, getResourceClasses, getResourceOverrides
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.webapp.plugin.spi.AppPlugin
getAssetDirectory, getId, getResourceClasses, getResourceOverrides
-
-
-
-
Method Detail
-
getMappingFiles
public List<String> getMappingFiles()
Description copied from interface:CockpitPlugin
Returns a list of mapping files that define the custom queries provided by this plugin.The mapping files define additional MyBatis queries that can be executed by the plugin.
Inside the plugin the queries may be executed via the
QueryService
that may be obtained throughCockpit.getQueryService(java.lang.String)
.- Specified by:
getMappingFiles
in interfaceCockpitPlugin
- Returns:
- the list of additional mapping files
-
-