
com.yahoo.document.select.Context Maven / Gradle / Ivy
// 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