com.pankia.api.manager
クラス NullUserManagerListener

java.lang.Object
  上位を拡張 com.pankia.api.manager.NullUserManagerListener
すべての実装されたインタフェース:
ManagerListener, UserManagerListener

public abstract class NullUserManagerListener
extends java.lang.Object
implements UserManagerListener

UserManagerListenerのNull Object。 必要なメソッドだけオーバーライドして利用すれば良い。 onFailureとonExceptionは実装すること。


コンストラクタの概要
NullUserManagerListener()
           
 
メソッドの概要
 void onComplete()
          通信が終了した。
 void onUserFindSuccess(java.util.List<Friend> users)
          ユーザーの検索に成功した
 void onUserFolloweesSuccess(java.util.List<Friend> followees)
          Followeesの取得に成功した
 void onUserFollowersSuccess(java.util.List<Friend> followers)
          Followersの取得に成功した
 void onUserFollowSuccess()
          ユーザーのフォローに成功した
 void onUserSecureSuccess()
          ユーザーのセキュアに成功した
 void onUserShowSuccess(Friend user, java.util.List<Install> installs)
          ユーザー情報の取得に成功した
 void onUserUnFollowSuccess()
          ユーザーのフォロー解除に成功した
 void onUserUpdateSuccess(java.lang.String username, boolean isGuest)
          ユーザー名の更新に成功した
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
インタフェース com.pankia.api.manager.ManagerListener から継承されたメソッド
onException, onFailure
 

コンストラクタの詳細

NullUserManagerListener

public NullUserManagerListener()
メソッドの詳細

onUserUpdateSuccess

public void onUserUpdateSuccess(java.lang.String username,
                                boolean isGuest)
インタフェース UserManagerListener の記述:
ユーザー名の更新に成功した

定義:
インタフェース UserManagerListener 内の onUserUpdateSuccess

onUserSecureSuccess

public void onUserSecureSuccess()
インタフェース UserManagerListener の記述:
ユーザーのセキュアに成功した

定義:
インタフェース UserManagerListener 内の onUserSecureSuccess

onUserFollowSuccess

public void onUserFollowSuccess()
インタフェース UserManagerListener の記述:
ユーザーのフォローに成功した

定義:
インタフェース UserManagerListener 内の onUserFollowSuccess

onUserUnFollowSuccess

public void onUserUnFollowSuccess()
インタフェース UserManagerListener の記述:
ユーザーのフォロー解除に成功した

定義:
インタフェース UserManagerListener 内の onUserUnFollowSuccess

onUserFolloweesSuccess

public void onUserFolloweesSuccess(java.util.List<Friend> followees)
インタフェース UserManagerListener の記述:
Followeesの取得に成功した

定義:
インタフェース UserManagerListener 内の onUserFolloweesSuccess

onUserFollowersSuccess

public void onUserFollowersSuccess(java.util.List<Friend> followers)
インタフェース UserManagerListener の記述:
Followersの取得に成功した

定義:
インタフェース UserManagerListener 内の onUserFollowersSuccess

onUserFindSuccess

public void onUserFindSuccess(java.util.List<Friend> users)
インタフェース UserManagerListener の記述:
ユーザーの検索に成功した

定義:
インタフェース UserManagerListener 内の onUserFindSuccess

onUserShowSuccess

public void onUserShowSuccess(Friend user,
                              java.util.List<Install> installs)
インタフェース UserManagerListener の記述:
ユーザー情報の取得に成功した

定義:
インタフェース UserManagerListener 内の onUserShowSuccess

onComplete

public void onComplete()
インタフェース ManagerListener の記述:
通信が終了した。 onFailureやonSuccessなど、タスクの正常終了を通知する呼び出しの後に呼ばれる。 Taskは、必ずonCompleteを呼び出すように、注意深く実装すること。 onExceptionの場合は、onCompleteを続けて呼び出してはいけない。

定義:
インタフェース ManagerListener 内の onComplete