Package com.cosmicpush.app.domain.clients.actions

Examples of com.cosmicpush.app.domain.clients.actions.CreateGoogleTalkConfigAction


  public Response updateGoogleTalkConfig(@FormParam("userName") String userName,
                                         @FormParam("password") String password,
                                         @FormParam("testAddress") String testAddress,
                                         @FormParam("recipientOverride") String recipientOverride) throws Exception {

    CreateGoogleTalkConfigAction action = new CreateGoogleTalkConfigAction(userName, password, testAddress, recipientOverride);

    apiClient.createGoogleTalkConfig(action);
    config.getAccountStore().update(account);

    return redirect();
View Full Code Here

TOP

Related Classes of com.cosmicpush.app.domain.clients.actions.CreateGoogleTalkConfigAction

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.