Example usage for com.mongodb MongoClient getDefaultCodecRegistry

List of usage examples for com.mongodb MongoClient getDefaultCodecRegistry

Introduction

In this page you can find the example usage for com.mongodb MongoClient getDefaultCodecRegistry.

Prototype

public static CodecRegistry getDefaultCodecRegistry() 

Source Link

Document

Gets the default codec registry.

Usage

From source file:com.shampan.db.codec.PageAlbumCodec.java

public PageAlbumCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PageCategoryCodec.java

public PageCategoryCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PageCodec.java

public PageCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PageMemeberCodec.java

public PageMemeberCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PagePhotoCodec.java

public PagePhotoCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PageSubCategoryCodec.java

public PageSubCategoryCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PhotoCategoryCodec.java

public PhotoCategoryCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.PhotoCodec.java

public PhotoCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.ReligionsCodec.java

public ReligionsCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}

From source file:com.shampan.db.codec.SocialNetworkingCodec.java

public SocialNetworkingCodec() {
    this.documentCodec = MongoClient.getDefaultCodecRegistry().get(Document.class);
}