20212223242526
public class ObjectIdAdapter extends XmlAdapter<String, ObjectId> { @Override public ObjectId unmarshal( String s ) throws Exception { return new ObjectId( s ); }