Package com.atlassian.labs.speakeasy.event

Examples of com.atlassian.labs.speakeasy.event.ExtensionUpdatedEvent


    public String saveAndRebuild(Extension plugin, String fileName, String contents, String user)
    {
        String pluginKey = plugin.getKey();
        String installedPluginKey = pluginSystemManager.saveAndRebuild(pluginKey, plugin.getPluginType(), fileName, contents, user);
        eventPublisher.publish(new ExtensionUpdatedEvent(pluginKey)
                .setUserName(user)
                .setUserEmail(plugin.getAuthorEmail())
                .addUpdatedFile(fileName)
                .setMessage("Edit from the UI"));
        return installedPluginKey;
View Full Code Here

TOP

Related Classes of com.atlassian.labs.speakeasy.event.ExtensionUpdatedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.