Class AbstractAppPlugin
- java.lang.Object
-
- org.camunda.bpm.webapp.plugin.spi.impl.AbstractAppPlugin
-
- All Implemented Interfaces:
AppPlugin
- Direct Known Subclasses:
AbstractAdminPlugin
,AbstractCockpitPlugin
,AbstractTasklistPlugin
,AbstractWelcomePlugin
public abstract class AbstractAppPlugin extends Object implements AppPlugin
Abstract implementation of theAppPlugin
SPI. Should be used by- Author:
- Daniel Meyer
-
-
Constructor Summary
Constructors Constructor Description AbstractAppPlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAssetDirectory()
Returns a uri to a plugin resources directory.Set<Class<?>>
getResourceClasses()
Returns a set of JAX-RS resource classes that extend the rest API.List<PluginResourceOverride>
getResourceOverrides()
Allows providing a list ofresource overrides
.
-
-
-
Method Detail
-
getAssetDirectory
public String getAssetDirectory()
Returns a uri to a plugin resources directory. The directory must be unique across all plugins.This implementation assumes that the resources are provided in the directory
plugin-webapp/PLUGIN_ID
, absolute to the root directory.- Specified by:
getAssetDirectory
in interfaceAppPlugin
- Returns:
- the directory providing the plugins client side resources
-
getResourceClasses
public Set<Class<?>> getResourceClasses()
Description copied from interface:AppPlugin
Returns a set of JAX-RS resource classes that extend the rest API.Typically, a plugin publishes its API via a subclass of
AbstractPluginRootResource
.- Specified by:
getResourceClasses
in interfaceAppPlugin
- Returns:
- the set of resource classes provided by this plugin
-
getResourceOverrides
public List<PluginResourceOverride> getResourceOverrides()
Description copied from interface:AppPlugin
Allows providing a list ofresource overrides
. Resource overrides allow to conditionally override the static resources provided by other plugins.- Specified by:
getResourceOverrides
in interfaceAppPlugin
- Returns:
- a list of
PluginResourceOverride
implementations.
-
-