Copyright (c) 2012 CloudMine LLC, http://cloudmine.me
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software")...
If you think the Android project cloudmine-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.cloudmine.api.rest;
/*www.java2s.com*/import com.android.volley.NetworkResponse;
import com.android.volley.Response;
import com.cloudmine.api.CMApiCredentials;
import com.cloudmine.api.CMSessionToken;
import com.cloudmine.api.rest.options.CMServerFunction;
import com.cloudmine.api.rest.response.CMResponse;
import me.cloudmine.annotations.Expand;
import me.cloudmine.annotations.Optional;
import java.util.Date;
/**
* A Request for invalidating a session token. Note that if a user has multiple valid
* session tokens, invalidating a single token will not invalidate
* <br>
* Copyright CloudMine LLC. All rights reserved<br>
* See LICENSE file included with SDK for details.
*/publicclass BaseUserLogoutRequest extends CloudMineRequest<CMResponse> {
publicstaticfinalint REQUEST_TYPE = 413;
/**
* Create a BaseUserLogoutRequest which will invalidate the specified sessionToken
* @param sessionToken a String representation of a sessionToken, obtained by calling {@link com.cloudmine.api.CMSessionToken#getSessionToken()}
* @param serverFunction
* @param successListener
* @param errorListener
*/
@Expand
public BaseUserLogoutRequest(String sessionToken, @Optional CMApiCredentials apiCredentials, @Optional CMServerFunction serverFunction, @Optional Response.Listener<CMResponse> successListener, @Optional Response.ErrorListener errorListener) {
this(new CMSessionToken(sessionToken, new Date()), apiCredentials, serverFunction, successListener, errorListener);
}
/**
* Create a BaseUserLogoutRequest which will invalidate the specified sessionToken
* @param sessionToken
* @param serverFunction
* @param successListener
* @param errorListener
*/
@Expand
public BaseUserLogoutRequest(CMSessionToken sessionToken, @Optional CMApiCredentials apiCredentials, @Optional CMServerFunction serverFunction, @Optional Response.Listener<CMResponse> successListener, @Optional Response.ErrorListener errorListener) {
super(Method.POST, "/account/logout", (String)null, sessionToken, apiCredentials, serverFunction, successListener, errorListener);
}
@Override
protected Response<CMResponse> parseNetworkResponse(NetworkResponse networkResponse) {
return Response.success(new CMResponse(new String(networkResponse.data), networkResponse.statusCode), getCacheEntry(networkResponse));
}
@Override
publicint getRequestType() {
return REQUEST_TYPE;
}
}