mirror of
https://github.com/owncloud/android-library.git
synced 2025-06-08 16:36:13 +00:00
OCShare made Serializable to be able to send it between components
This commit is contained in:
parent
858d5f1064
commit
546c19829c
@ -24,6 +24,8 @@
|
|||||||
|
|
||||||
package com.owncloud.android.lib.operations.common;
|
package com.owncloud.android.lib.operations.common;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
import com.owncloud.android.lib.utils.FileUtils;
|
import com.owncloud.android.lib.utils.FileUtils;
|
||||||
|
|
||||||
import android.os.Parcel;
|
import android.os.Parcel;
|
||||||
@ -37,7 +39,10 @@ import android.util.Log;
|
|||||||
* @author masensio
|
* @author masensio
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class OCShare implements Parcelable{
|
public class OCShare implements Parcelable, Serializable {
|
||||||
|
|
||||||
|
/** Generated - should be refreshed every time the class changes!! */
|
||||||
|
private static final long serialVersionUID = 4124975224281327921L;
|
||||||
|
|
||||||
private static final String TAG = OCShare.class.getSimpleName();
|
private static final String TAG = OCShare.class.getSimpleName();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user