forked from rapidftr/RapidFTR-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#1477 - Ashok - Migrate unverified data to verified
- Loading branch information
Ashok
committed
Feb 13, 2013
1 parent
c313c6f
commit dedabaf
Showing
3 changed files
with
71 additions
and
9 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
RapidFTR-Android/src/main/java/com/rapidftr/task/MigrateUnverifiedDataToVerified.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.rapidftr.task; | ||
|
||
import android.os.AsyncTask; | ||
import com.rapidftr.model.User; | ||
import org.json.JSONObject; | ||
|
||
public class MigrateUnverifiedDataToVerified extends AsyncTask<Void, Void, Void> { | ||
private JSONObject responseFromServer; | ||
private User unVerifiedUser; | ||
|
||
public MigrateUnverifiedDataToVerified(JSONObject responseFromServer, User unVerifiedUser){ | ||
this.responseFromServer = responseFromServer; | ||
this.unVerifiedUser = unVerifiedUser; | ||
} | ||
|
||
@Override | ||
protected Void doInBackground(Void... voids) { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters