Package net.vz.mongodb.jackson

Examples of net.vz.mongodb.jackson.JacksonDBCollection


            }
            if (collectionName == null) {
                throw ctxt.instantiationException(DBRef.class, "DBRef contains no collection name");
            }

            JacksonDBCollection coll = ((JacksonDBCollectionProvider) jp).getDBCollection();
            JacksonDBCollection<T, K> refColl = coll.getReferenceCollection(collectionName, type, keyType);
            return new FetchableDBRef<T, K>(id, refColl);
        } else {
            throw ctxt.instantiationException(DBRef.class, "DBRef can only be deserialised by this deserializer if parser implements " + JacksonDBCollectionProvider.class.getName());
        }
    }
View Full Code Here

TOP

Related Classes of net.vz.mongodb.jackson.JacksonDBCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.