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

com.yahoo.document.select.Context Maven / Gradle / Ivy

There is a newer version: 8.498.26
Show newest version
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.select;

import com.yahoo.document.DocumentOperation;

import java.util.HashMap;
import java.util.Map;

public class Context {

    private DocumentOperation documentOperation;
    private Map variables = new HashMap<>();

    public Context(DocumentOperation documentOperation) {
        this.documentOperation = documentOperation;
    }

    public DocumentOperation getDocumentOperation() {
        return documentOperation;
    }

    public void setDocumentOperation(DocumentOperation documentOperation) {
        this.documentOperation = documentOperation;
    }

    public Map getVariables() {
        return variables;
    }

    public void setVariables(Map variables) {
        this.variables = variables;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy