Class WelcomePlugins
- java.lang.Object
- 
- org.camunda.bpm.webapp.plugin.spi.impl.AbstractAppPlugin
- 
- org.camunda.bpm.welcome.plugin.spi.impl.AbstractWelcomePlugin
- 
- org.camunda.bpm.welcome.impl.plugin.WelcomePlugins
 
 
 
- 
- All Implemented Interfaces:
- AppPlugin,- WelcomePlugin
 
 public class WelcomePlugins extends AbstractWelcomePlugin - Author:
- vale
 
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringID
 - 
Constructor SummaryConstructors Constructor Description WelcomePlugins()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAssetDirectory()Returns a uri to a plugin resources directory.java.lang.StringgetId()Returns the unique id of this plugin.java.util.Set<java.lang.Class<?>>getResourceClasses()Returns a set of JAX-RS resource classes that extend the rest API.- 
Methods inherited from class org.camunda.bpm.webapp.plugin.spi.impl.AbstractAppPlugingetResourceOverrides
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.camunda.bpm.webapp.plugin.spi.AppPlugingetResourceOverrides
 
- 
 
- 
- 
- 
Field Detail- 
IDpublic static final java.lang.String ID - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getIdpublic java.lang.String getId() Description copied from interface:AppPluginReturns the unique id of this plugin.- Returns:
 
 - 
getResourceClassespublic java.util.Set<java.lang.Class<?>> getResourceClasses() Description copied from interface:AppPluginReturns 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:
- getResourceClassesin interface- AppPlugin
- Overrides:
- getResourceClassesin class- AbstractAppPlugin
- Returns:
- the set of resource classes provided by this plugin
 
 - 
getAssetDirectorypublic java.lang.String getAssetDirectory() Description copied from class:AbstractAppPluginReturns 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:
- getAssetDirectoryin interface- AppPlugin
- Overrides:
- getAssetDirectoryin class- AbstractAppPlugin
- Returns:
- the directory providing the plugins client side resources
 
 
- 
 
-