Package com.atlassian.labs.speakeasy.event

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


    public String unfavorite(Extension ex, String user)
    {
        String pluginKey = ex.getKey();
        data.unfavorite(pluginKey, user);
        eventPublisher.publish(new ExtensionUnfavoritedEvent(pluginKey)
                .setUserName(user)
                .setUserEmail(userManager.getUserProfile(user).getEmail()));
        return pluginKey;
    }
View Full Code Here

TOP

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

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.