Files
codeql/java/ql/test/stubs/ognl-3.2.14/ognl/Ognl.java
2021-05-12 12:32:38 +02:00

35 lines
1.1 KiB
Java
Generated

package ognl;
import ognl.enhance.ExpressionAccessor;
import java.util.*;
public abstract class Ognl {
public static Object parseExpression(String expression) throws OgnlException {
return new Object();
}
public static Object getValue(Object tree, Map context, Object root) throws OgnlException {
return new Object();
}
public static Object getValue(ExpressionAccessor accessor, OgnlContext context, Object root) throws OgnlException {
return new Object();
}
public static void setValue(Object tree, Object root, Object value) throws OgnlException {}
public static void setValue(ExpressionAccessor accessor, OgnlContext context, Object root, Object value) throws OgnlException {}
public static Node compileExpression(OgnlContext context, Object root, String expression)
throws Exception {
return null;
}
public static Object getValue(String expression, Object root) throws OgnlException {
return new Object();
}
public static void setValue(String expression, Object root, Object value) throws OgnlException {}
}