All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.couchdb.moshi.MapWithDocumentIdAdapter Maven / Gradle / Ivy

package de.gesellix.couchdb.moshi;

import com.squareup.moshi.FromJson;
import com.squareup.moshi.ToJson;
import de.gesellix.couchdb.model.MapWithDocumentId;

import java.util.Map;

public class MapWithDocumentIdAdapter {

  @ToJson
  Map toJson(MapWithDocumentId from) {
    return from;
  }

  @FromJson
  MapWithDocumentId fromJson(Map delegate) {
    return new MapWithDocumentId<>(delegate);
  }
}