Package org.mongojack

Examples of org.mongojack.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 "
View Full Code Here

TOP

Related Classes of org.mongojack.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.