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

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

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

public class BoundCommand {

    private final String command;

    private final ParameterHolder parameterHolder;

    public BoundCommand(String command, ParameterHolder parameterHolder) {
        this.command = command;
        this.parameterHolder = parameterHolder;
    }

    public String getCommand() {
        return command;
    }

    public ParameterHolder getParameterHolder() {
        return parameterHolder;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy