com.liferay.alerts.callback.AddVoteCallback.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.alerts.callback.AddVoteCallback.java

Source

/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.alerts.callback;

import android.content.Context;

import android.widget.RadioGroup;

import com.liferay.alerts.R;
import com.liferay.alerts.model.Alert;
import com.liferay.alerts.model.PollsQuestion;
import com.liferay.alerts.model.PollsQuestion.PollsChoice;
import com.liferay.alerts.util.ToastUtil;
import com.liferay.alerts.widget.CardView;
import com.liferay.mobile.android.task.callback.typed.JSONObjectAsyncTaskCallback;

import org.json.JSONException;
import org.json.JSONObject;

/**
 * @author Bruno Farache
 */
public class AddVoteCallback extends JSONObjectAsyncTaskCallback {

    public AddVoteCallback(Context context, Alert alert, RadioGroup group) {
        _context = context.getApplicationContext();
        _alert = alert;
        _group = group;
    }

    @Override
    public void onFailure(Exception e) {
        ToastUtil.show(_context, R.string.vote_failure, true);
        CardView.setRadioGroupEnabled(_group, true);
    }

    @Override
    public void onSuccess(JSONObject vote) {
        ToastUtil.show(_context, R.string.vote_success, true);

        try {
            PollsQuestion question = _alert.getPollsQuestion();
            int choiceId = vote.getInt(PollsChoice.CHOICE_ID);

            _alert.setPollsQuestion(question.toJSONObject(choiceId));
        } catch (JSONException je) {
        }
    }

    private Alert _alert;
    private Context _context;
    private RadioGroup _group;

}