|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use PluginParseException | |
|---|---|
| com.atlassian.plugin | |
| com.atlassian.plugin.descriptors | |
| com.atlassian.plugin.factories | |
| com.atlassian.plugin.loaders | |
| com.atlassian.plugin.main | Main interface to the plugins framework providing a facade to hide the unnecessary internals. |
| com.atlassian.plugin.manager | |
| com.atlassian.plugin.module | |
| com.atlassian.plugin.osgi.external | |
| com.atlassian.plugin.osgi.factory | Deployers for OSGi-related plugins |
| com.atlassian.plugin.osgi.factory.descriptor | |
| com.atlassian.plugin.osgi.factory.transform.model | |
| com.atlassian.plugin.parsers | |
| com.atlassian.plugin.servlet.descriptors | |
| com.atlassian.plugin.util.validation | |
| com.atlassian.plugin.web | |
| com.atlassian.plugin.web.conditions | |
| com.atlassian.plugin.web.descriptors | |
| com.atlassian.plugin.web.model | |
| com.atlassian.plugin.webresource | |
| Uses of PluginParseException in com.atlassian.plugin |
|---|
| Methods in com.atlassian.plugin that throw PluginParseException | ||
|---|---|---|
static Resources |
Resources.fromXml(org.dom4j.Element element)
Parses the resource descriptors from the provided plugin XML element and creates a Resources object containing them. |
|
|
PluginAccessor.getEnabledModuleDescriptorsByType(String type)
Deprecated. since 0.17, use PluginAccessor.getModuleDescriptors(com.atlassian.plugin.predicate.ModuleDescriptorPredicate) with an appropriate predicate instead. |
|
ModuleDescriptor<?> |
DefaultModuleDescriptorFactory.getModuleDescriptor(String type)
|
|
ModuleDescriptor<?> |
ModuleDescriptorFactory.getModuleDescriptor(String type)
|
|
InputStream |
JarPluginArtifact.getResourceAsStream(String fileName)
|
|
InputStream |
XmlPluginArtifact.getResourceAsStream(String name)
Always returns null, since it doesn't make sense for an XML artifact |
|
InputStream |
PluginArtifact.getResourceAsStream(String name)
|
|
void |
PluginSystemLifecycle.init()
Initialise the plugin system. |
|
void |
ModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
Initialise a module given it's parent plugin and the XML element representing the module. |
|
String |
PluginController.installPlugin(PluginArtifact pluginArtifact)
Deprecated. Since 2.3.0, use PluginController.installPlugins(PluginArtifact...) instead |
|
Set<String> |
PluginController.installPlugins(PluginArtifact... pluginArtifacts)
Installs multiple plugins and returns the list of plugin keys. |
|
int |
PluginController.scanForNewPlugins()
Search all loaders and add any new plugins you find. |
|
| Uses of PluginParseException in com.atlassian.plugin.descriptors |
|---|
| Methods in com.atlassian.plugin.descriptors that throw PluginParseException | |
|---|---|
protected void |
AbstractModuleDescriptor.assertModuleClassImplements(Class<T> requiredModuleClazz)
Check that the module class of this descriptor implements a given interface, or extends a given class. |
static UnloadableModuleDescriptor |
UnloadableModuleDescriptorFactory.createUnloadableModuleDescriptor(Plugin plugin,
org.dom4j.Element element,
Throwable e,
ModuleDescriptorFactory moduleDescriptorFactory)
Creates a new UnloadableModuleDescriptor, for when a problem occurs during the construction of the ModuleDescriptor itself. |
static UnrecognisedModuleDescriptor |
UnrecognisedModuleDescriptorFactory.createUnrecognisedModuleDescriptor(Plugin plugin,
org.dom4j.Element element,
Throwable e,
ModuleDescriptorFactory moduleDescriptorFactory)
Creates a new UnrecognisedModuleDescriptor, for when a problem occurs during the retrieval of the ModuleDescriptor itself. |
ModuleDescriptor<?> |
ChainModuleDescriptorFactory.getModuleDescriptor(String type)
|
void |
AbstractModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
protected void |
UnloadableModuleDescriptor.loadClass(Plugin plugin,
org.dom4j.Element element)
|
protected void |
AbstractModuleDescriptor.loadClass(Plugin plugin,
org.dom4j.Element element)
Deprecated. Since 2.1.0, use AbstractModuleDescriptor.loadClass(Plugin,String) instead |
protected void |
AbstractModuleDescriptor.loadClass(Plugin plugin,
String clazz)
Loads the module class that this descriptor provides, and will not necessarily be the implementation class. |
| Uses of PluginParseException in com.atlassian.plugin.factories |
|---|
| Methods in com.atlassian.plugin.factories that throw PluginParseException | |
|---|---|
String |
XmlDynamicPluginFactory.canCreate(PluginArtifact pluginArtifact)
Determines if this deployer can handle this artifact by looking for the plugin descriptor |
String |
PluginFactory.canCreate(PluginArtifact pluginArtifact)
Determines if this factory can handle this artifact. |
String |
LegacyDynamicPluginFactory.canCreate(PluginArtifact pluginArtifact)
Determines if this deployer can handle this artifact by looking for the plugin descriptor |
Plugin |
XmlDynamicPluginFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use XmlDynamicPluginFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
PluginFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use PluginFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
LegacyDynamicPluginFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use LegacyDynamicPluginFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
XmlDynamicPluginFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Deploys the plugin artifact |
Plugin |
PluginFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Deploys the plugin artifact by instantiating the plugin and configuring it. |
Plugin |
LegacyDynamicPluginFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Deploys the plugin artifact |
| Uses of PluginParseException in com.atlassian.plugin.loaders |
|---|
| Methods in com.atlassian.plugin.loaders that throw PluginParseException | |
|---|---|
Collection<Plugin> |
ScanningPluginLoader.addFoundPlugins(ModuleDescriptorFactory moduleDescriptorFactory)
|
Collection<Plugin> |
PluginLoader.addFoundPlugins(ModuleDescriptorFactory moduleDescriptorFactory)
|
String |
ScanningPluginLoader.canLoad(PluginArtifact pluginArtifact)
Determines if the artifact can be loaded by any of its deployers |
String |
DynamicPluginLoader.canLoad(PluginArtifact pluginArtifact)
Determines if this loader can load the jar. |
static List<ResourceDescriptor> |
LoaderUtils.getResourceDescriptors(org.dom4j.Element element)
Deprecated. use Resources.fromXml(org.dom4j.Element) |
Collection<Plugin> |
ClassPathPluginLoader.loadAllPlugins(ModuleDescriptorFactory moduleDescriptorFactory)
|
Collection<Plugin> |
PluginLoader.loadAllPlugins(ModuleDescriptorFactory moduleDescriptorFactory)
|
protected Plugin |
SinglePluginLoader.loadPlugin(ModuleDescriptorFactory moduleDescriptorFactory)
|
| Uses of PluginParseException in com.atlassian.plugin.main |
|---|
| Methods in com.atlassian.plugin.main that throw PluginParseException | |
|---|---|
void |
AtlassianPlugins.start()
Starts the plugins framework. |
| Uses of PluginParseException in com.atlassian.plugin.manager |
|---|
| Methods in com.atlassian.plugin.manager that throw PluginParseException | ||
|---|---|---|
protected void |
DefaultPluginManager.addPlugin(PluginLoader loader,
Plugin plugin)
Deprecated. Since 2.0.2, use #addPlugins(PluginLoader,Collection instead |
|
protected void |
DefaultPluginManager.addPlugins(PluginLoader loader,
Collection<Plugin> pluginsToInstall)
Update the local plugin state and enable state aware modules. |
|
|
DefaultPluginManager.getEnabledModuleDescriptorsByType(String type)
Deprecated. since 0.17, use DefaultPluginManager.getModuleDescriptors(com.atlassian.plugin.predicate.ModuleDescriptorPredicate)
with an appropriate predicate instead. |
|
void |
DefaultPluginManager.init()
|
|
String |
DefaultPluginManager.installPlugin(PluginArtifact pluginArtifact)
|
|
Set<String> |
DefaultPluginManager.installPlugins(PluginArtifact... pluginArtifacts)
|
|
int |
DefaultPluginManager.scanForNewPlugins()
|
|
| Uses of PluginParseException in com.atlassian.plugin.module |
|---|
| Subclasses of PluginParseException in com.atlassian.plugin.module | |
|---|---|
class |
ModuleClassNotFoundException
If a module class could not be found |
| Methods in com.atlassian.plugin.module that throw PluginParseException | ||
|---|---|---|
|
HostContainerLegacyAdaptor.createModule(String name,
ModuleDescriptor<T> moduleDescriptor)
|
|
|
ModuleFactory.createModule(String name,
ModuleDescriptor<T> moduleDescriptor)
Creates the module instance. |
|
|
ClassPrefixModuleFactory.createModule(String name,
ModuleDescriptor<T> moduleDescriptor)
|
|
|
PrefixDelegatingModuleFactory.createModule(String className,
ModuleDescriptor<T> moduleDescriptor)
|
|
|
LegacyModuleFactory.createModule(String name,
ModuleDescriptor<T> moduleDescriptor)
|
|
| Uses of PluginParseException in com.atlassian.plugin.osgi.external |
|---|
| Methods in com.atlassian.plugin.osgi.external that throw PluginParseException | |
|---|---|
ModuleDescriptor |
SingleModuleDescriptorFactory.getModuleDescriptor(String type)
|
| Uses of PluginParseException in com.atlassian.plugin.osgi.factory |
|---|
| Methods in com.atlassian.plugin.osgi.factory that throw PluginParseException | |
|---|---|
String |
OsgiBundleFactory.canCreate(PluginArtifact pluginArtifact)
|
String |
OsgiPluginFactory.canCreate(PluginArtifact pluginArtifact)
|
String |
UnloadableStaticPluginFactory.canCreate(PluginArtifact pluginArtifact)
|
Plugin |
OsgiBundleFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use OsgiBundleFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
OsgiPluginFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use OsgiPluginFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
UnloadableStaticPluginFactory.create(DeploymentUnit deploymentUnit,
ModuleDescriptorFactory moduleDescriptorFactory)
Deprecated. Since 2.2.0, use UnloadableStaticPluginFactory.create(PluginArtifact,ModuleDescriptorFactory) instead |
Plugin |
OsgiBundleFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Deploys the plugin artifact |
Plugin |
OsgiPluginFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Deploys the plugin artifact |
Plugin |
UnloadableStaticPluginFactory.create(PluginArtifact pluginArtifact,
ModuleDescriptorFactory moduleDescriptorFactory)
Creates an unloadable plugin |
protected ModuleDescriptor<?> |
OsgiPluginXmlDescriptorParser.createModuleDescriptor(Plugin plugin,
org.dom4j.Element element,
ModuleDescriptorFactory moduleDescriptorFactory)
Passes module descriptor elements back to the OsgiPlugin |
DescriptorParser |
OsgiPluginXmlDescriptorParserFactory.getInstance(InputStream source,
String... applicationKeys)
Gets an instance that filters the modules "component", "component-import", "module-type", "bean", and "spring" |
| Constructors in com.atlassian.plugin.osgi.factory that throw PluginParseException | |
|---|---|
OsgiPluginXmlDescriptorParser(InputStream source,
String... applicationKeys)
|
|
| Uses of PluginParseException in com.atlassian.plugin.osgi.factory.descriptor |
|---|
| Methods in com.atlassian.plugin.osgi.factory.descriptor that throw PluginParseException | |
|---|---|
protected void |
ComponentModuleDescriptor.loadClass(Plugin plugin,
String clazz)
|
| Uses of PluginParseException in com.atlassian.plugin.osgi.factory.transform.model |
|---|
| Constructors in com.atlassian.plugin.osgi.factory.transform.model that throw PluginParseException | |
|---|---|
ComponentImport(org.dom4j.Element element)
|
|
| Uses of PluginParseException in com.atlassian.plugin.parsers |
|---|
| Methods in com.atlassian.plugin.parsers that throw PluginParseException | |
|---|---|
Plugin |
XmlDescriptorParser.configurePlugin(ModuleDescriptorFactory moduleDescriptorFactory,
Plugin plugin)
|
Plugin |
DescriptorParser.configurePlugin(ModuleDescriptorFactory moduleDescriptorFactory,
Plugin plugin)
Sets the configuration on the plugin argument to match the configuration specified in the plugin descriptor (typically an XML file). |
protected org.dom4j.Document |
XmlDescriptorParser.createDocument(InputStream source)
|
protected ModuleDescriptor<?> |
XmlDescriptorParser.createModuleDescriptor(Plugin plugin,
org.dom4j.Element element,
ModuleDescriptorFactory moduleDescriptorFactory)
|
DescriptorParser |
DescriptorParserFactory.getInstance(InputStream source,
String... applicationKeys)
Creates a new DescriptorParser for getting plugin descriptor information
from the provided source data. |
DescriptorParser |
XmlDescriptorParserFactory.getInstance(InputStream source,
String... applicationKeys)
|
| Constructors in com.atlassian.plugin.parsers that throw PluginParseException | |
|---|---|
XmlDescriptorParser(org.dom4j.Document source,
String... applicationKeys)
Constructs a parser with an already-constructed document |
|
XmlDescriptorParser(InputStream source,
String... applicationKeys)
Constructs a parser with a stream of an XML document for a specific application |
|
| Uses of PluginParseException in com.atlassian.plugin.servlet.descriptors |
|---|
| Methods in com.atlassian.plugin.servlet.descriptors that throw PluginParseException | |
|---|---|
void |
BaseServletModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
ServletContextParamModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
ServletFilterModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
| Uses of PluginParseException in com.atlassian.plugin.util.validation |
|---|
| Subclasses of PluginParseException in com.atlassian.plugin.util.validation | |
|---|---|
class |
ValidationException
Exception for a validation error parsing DOM4J nodes |
| Uses of PluginParseException in com.atlassian.plugin.web |
|---|
| Methods in com.atlassian.plugin.web that throw PluginParseException | |
|---|---|
void |
NoOpContextProvider.init(Map<String,String> params)
|
void |
CopyingContextProvider.init(Map<String,String> params)
|
void |
Condition.init(Map<String,String> params)
Called after creation and autowiring. |
void |
ContextProvider.init(Map<String,String> params)
Called after creation and autowiring. |
| Uses of PluginParseException in com.atlassian.plugin.web.conditions |
|---|
| Methods in com.atlassian.plugin.web.conditions that throw PluginParseException | |
|---|---|
void |
AbstractCompositeCondition.init(Map<String,String> params)
|
void |
InvertedCondition.init(Map<String,String> params)
|
| Uses of PluginParseException in com.atlassian.plugin.web.descriptors |
|---|
| Methods in com.atlassian.plugin.web.descriptors that throw PluginParseException | |
|---|---|
void |
AbstractWebFragmentModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
DefaultAbstractWebFragmentModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
DefaultWebPanelModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
WebPanelRendererModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
DefaultWebSectionModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
void |
DefaultWebItemModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
protected Condition |
AbstractWebFragmentModuleDescriptor.makeCondition(org.dom4j.Element element)
|
protected Condition |
AbstractWebFragmentModuleDescriptor.makeConditions(org.dom4j.Element element,
int type)
Create a condition for when this web fragment should be displayed |
protected Condition |
AbstractWebFragmentModuleDescriptor.makeConditions(List elements,
int type)
|
protected ContextProvider |
AbstractWebFragmentModuleDescriptor.makeContextProvider(org.dom4j.Element element)
|
| Uses of PluginParseException in com.atlassian.plugin.web.model |
|---|
| Constructors in com.atlassian.plugin.web.model that throw PluginParseException | |
|---|---|
DefaultWebLabel(org.dom4j.Element labelEl,
WebFragmentHelper webFragmentHelper,
ContextProvider contextProvider,
WebFragmentModuleDescriptor descriptor)
|
|
| Uses of PluginParseException in com.atlassian.plugin.webresource |
|---|
| Methods in com.atlassian.plugin.webresource that throw PluginParseException | |
|---|---|
void |
WebResourceModuleDescriptor.init(Plugin plugin,
org.dom4j.Element element)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||