Example usage for com.mongodb DBObject interface-usage

List of usage examples for com.mongodb DBObject interface-usage

Introduction

In this page you can find the example usage for com.mongodb DBObject interface-usage.

Usage

From source file org.fastmongo.odm.bson.repository.BsonDbObject.java

/**
 * {@link com.mongodb.DBObject} implementation that holds unparsed BSON stream instead of parsed JSON tree.
 *
 * @author Alexander Gulko
 */
class BsonDbObject implements DBObject {

From source file org.fudgemsg.mapping.FudgeMongoDBObject.java

/**
 * Wraps a {@link FudgeFieldContainer} and implements the {@link DBObject} interface,
 * without going through an object conversion stage (as the {@link MongoDBFudgeBuilder} will do).
 * This class is very much a work in progress. For details on why, please see
 * http://kirkwylie.blogspot.com/2010/06/performance-of-fudge-persistence-in.html and the comments
 * from the 10gen team at the bottom.

From source file org.fudgemsg.mapping.mongo.FudgeMongoDBObject.java

/**
 * Wraps a {@link FudgeMsg} and implements the {@link DBObject} interface,
 * without going through an object conversion stage (as the {@link MongoDBFudgeBuilder} will do).
 * This class is very much a work in progress. For details on why, please see
 * http://kirkwylie.blogspot.com/2010/06/performance-of-fudge-persistence-in.html and the comments
 * from the 10gen team at the bottom.

From source file org.iternine.jeppetto.dao.mongodb.enhance.DirtyableDBObject.java

public interface DirtyableDBObject extends DBObject {

    /**
     * @return true if this object is dirtied from it's persisted state
     */
    boolean isDirty();

From source file org.joda.beans.integrate.mongo.BeanMongoDBObject.java

/**
 * Allows a Joda-Bean to be passed directly to MongoDB.
 *
 * @author Stephen Colebourne
 */
public class BeanMongoDBObject implements DBObject {

From source file pl.nask.hsn2.os.entities.MongoEntity.java

/**
 *
 * (C) Copyright 2011 NASK
 * Software Research & Development Department
 *
 *

From source file xbdd.model.simple.Scenario.java

public class Scenario implements DBObject {

    private final BasicDBObject scenarioObject;

    public Scenario(final BasicDBObject obj) {
        this.scenarioObject = obj;