EncryptedSerializer.java 660 B

12345678910111213141516171819202122
  1. package com.owncloud.android.datamodel;
  2. import com.google.gson.JsonElement;
  3. import com.google.gson.JsonSerializationContext;
  4. import com.google.gson.JsonSerializer;
  5. import java.lang.reflect.Type;
  6. /**
  7. * Created by tobi on 03.08.17.
  8. */
  9. public class EncryptedSerializer implements JsonSerializer<DecryptedFolderMetadata.Encrypted> {
  10. @Override
  11. public JsonElement serialize(DecryptedFolderMetadata.Encrypted src, Type typeOfSrc,
  12. JsonSerializationContext context) {
  13. // DecryptedFolderMetadata.Encrypted encrypted = new Gson().fromJson(src, DecryptedFolderMetadata.Encrypted.class);
  14. return null;
  15. }
  16. }