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;
/*fromwww.java2s.com*/import com.android.volley.NetworkResponse;
import com.android.volley.Response;
import com.cloudmine.api.JavaCMUser;
import com.cloudmine.api.rest.options.CMServerFunction;
import com.cloudmine.api.rest.response.CreationResponse;
import me.cloudmine.annotations.Expand;
import me.cloudmine.annotations.Optional;
/**
* A Request for creating a new user
* <br>
* Copyright CloudMine LLC. All rights reserved<br>
* See LICENSE file included with SDK for details.
*/publicclass BaseUserCreationRequest extends CloudMineRequest<CreationResponse> {
publicstaticfinalint REQUEST_TYPE = 406;
publicstaticfinal String CREATE_URL = "/account/create";
/**
* Create a new UserCreationRequest for creating a new user
* @param user A user with a username and/or an email set, as well as a password
* @param serverFunction
* @param successListener
* @param errorListener
*/
@Expand
public BaseUserCreationRequest(JavaCMUser user, @Optional CMServerFunction serverFunction, @Optional Response.Listener<CreationResponse> successListener, @Optional Response.ErrorListener errorListener) {
super(Method.PUT, CREATE_URL, user.transportableRepresentation(), null, serverFunction, successListener, errorListener);
}
@Override
protected Response<CreationResponse> parseNetworkResponse(NetworkResponse networkResponse) {
return Response.success(new CreationResponse(new String(networkResponse.data), networkResponse.statusCode), getCacheEntry());
}
@Override
publicint getRequestType() {
return REQUEST_TYPE;
}
}