mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
35 lines
1.1 KiB
Java
Generated
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 {}
|
|
}
|