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

com.github.aidensuen.mongo.mapping.AggregateInfo Maven / Gradle / Ivy

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

public class AggregateInfo {

    Class inputType;

    Class outputType;

    String options;

    public AggregateInfo(Class inputType, Class outputType, String options) {
        this.inputType = inputType;
        this.outputType = outputType;
        this.options = options;
    }

    public Class getInputType() {
        return inputType;
    }

    public void setInputType(Class inputType) {
        this.inputType = inputType;
    }

    public Class getOutputType() {
        return outputType;
    }

    public void setOutputType(Class outputType) {
        this.outputType = outputType;
    }

    public String getOptions() {
        return options;
    }

    public void setOptions(String options) {
        this.options = options;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy