/** * Copyright 2014 Daum Kakao Corp. * * Redistribution and modification in source or binary forms are not permitted without specific prior written permission.  * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.kakao; import com.kakao.helper.Logger; import com.kakao.http.HttpResponseHandler; /** * 푸시토큰 삭제 요청에 대한 응답 handler로, {@link PushService#deregisterPushToken(com.kakao.PushDeregisterHttpResponseHandler, String)} 또는 {@link PushService#deregisterPushTokenAll(com.kakao.PushDeregisterHttpResponseHandler)}을 호출할 때 넘겨주고 콜백을 받는다. * @author MJ */ public abstract class PushDeregisterHttpResponseHandler extends HttpResponseHandler<Void> { /** * 푸시토큰 삭제 요청이 성공한 경우로 기기에 저장하고 있던 푸시토큰도 삭제한다. * @param resultObj 성공한 결과 */ @Override protected void onHttpSuccess(Void resultObj) { PushToken.clearRegistrationId(); Logger.getInstance().d("pushToken deregistered"); } /** * 로그인 세션이 유효하지 않아 요청이 실패한 경우로 보통 로그인 페이지롤 전환한다. * @param errorResult 실패한 자세한 이유. */ @Override protected abstract void onHttpSessionClosedFailure(final APIErrorResult errorResult); /** * 로그인 세션이외의 문제로 요청이 실패한 경우로 실패한 이유를 보고 적절히 처리한다. * @param errorResult 실패한 자세한 이유. */ @Override protected void onHttpFailure(final APIErrorResult errorResult){ Logger.getInstance().d("PushDeregisterHttpResponseHandler : failure : " + errorResult); } }