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

com.github.aidensuen.mongo.bson.CustomAggregationOperation Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.github.aidensuen.mongo.bson;

import org.bson.Document;
import org.springframework.data.mongodb.core.aggregation.AggregationOperation;
import org.springframework.data.mongodb.core.aggregation.AggregationOperationContext;

public class CustomAggregationOperation implements AggregationOperation {

    private Document document;

    public CustomAggregationOperation(Document document) {
        this.document = document;
    }

    @Override
    public Document toDocument(AggregationOperationContext context) {
        return document;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy