com.googlecode.mjorm.ObjectDescriptor Maven / Gradle / Ivy
package com.googlecode.mjorm;
import java.util.HashMap;
import java.util.Map;
/**
* An object that describes how to convert
* java objects to and from {@link DBObject}s.
*/
public class ObjectDescriptor {
private Class> type;
private Map properties
= new HashMap();
private String discriminatorName;
private String discriminatorType;
private Map