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

com.indeed.proctor.common.ProvidedContext Maven / Gradle / Ivy

package com.indeed.proctor.common;


import javax.el.ValueExpression;
import java.util.Collections;
import java.util.Map;

/**
 * Created by rrice on 7/1/14.
 */
public class ProvidedContext {
    public static final Map EMPTY_CONTEXT = Collections.emptyMap();
    private final Map context;
    private final boolean evaluable;
    public ProvidedContext(final Map context,
                           boolean evaluable) {
        this.context = context;
        this.evaluable = evaluable;
    }
    public Map getContext() {
        return context;
    }
    public boolean isEvaluable() {
        return evaluable;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy