Package com.atlassian.labs.speakeasy.event

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


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

TOP

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

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.