com.atlassian.plugin.PluginParseException Java Examples

The following examples show how to use com.atlassian.plugin.PluginParseException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: IsOfficeFileAttachment.java    From onlyoffice-confluence with GNU Affero General Public License v3.0 4 votes vote down vote up
public void init(Map<String, String> params) throws PluginParseException {
    forEdit = false;
    if (params != null && !params.isEmpty() && params.get("forEdit") != null) {
        forEdit = !params.get("forEdit").isEmpty();
    }
}
 
Example #2
Source File: IsOfficeFileConvertAttachment.java    From onlyoffice-confluence with GNU Affero General Public License v3.0 4 votes vote down vote up
public void init(Map<String, String> params) throws PluginParseException {
}
 
Example #3
Source File: SessionCreatedCondition.java    From planning-poker-plugin with MIT License 4 votes vote down vote up
@Override
public void init(Map<String, String> params) throws PluginParseException {
}
 
Example #4
Source File: WebhookIsEnabledCondition.java    From TeamcityTriggerHook with GNU Lesser General Public License v3.0 4 votes vote down vote up
/**
 * {@inheritDoc}
 */
@Override
public void init(final Map<String, String> context) throws PluginParseException {
  // Nothing to do here
}