All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bq.oss.lib.mongo.index.MongoIndex Maven / Gradle / Ivy

/*
 * 2013 copyright Lumata
 */
package com.bq.oss.lib.mongo.index;

import java.util.concurrent.TimeUnit;

import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.mongodb.core.index.Index;
import org.springframework.data.mongodb.core.index.IndexDefinition;

import com.mongodb.DBObject;

/**
 * @author Alexander De Leon
 * 
 */
public class MongoIndex {

	private final Index index;
	private final IndexOptions options;

	public MongoIndex() {
		index = new Index();
		options = new IndexOptions();
	}

	public MongoIndex on(String key, Direction direction) {
		index.on(key, direction);
		return this;
	}

	public MongoIndex named(String name) {
		options.setName(name);
		return this;
	}

	public MongoIndex unique() {
		options.setUnique(true);
		return this;
	}

	public MongoIndex sparse() {
		options.setSparse(true);
		return this;
	}

	public MongoIndex background() {
		options.setBackground(true);
		return this;
	}

	public MongoIndex dropDups() {
		options.setDropDups(true);
		return this;
	}

	public MongoIndex expires(int expire, TimeUnit timeUnit) {
		options.setExpire(expire, timeUnit);
		return this;
	}

	public IndexDefinition getIndexDefinition() {
		return new IndexDefinition() {

			@Override
			public DBObject getIndexOptions() {
				return options.getDBObject();
			}

			@Override
			public DBObject getIndexKeys() {
				return index.getIndexKeys();
			}
		};

	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy