if (target == null) {
throw new JTesterException("Target for injection should not be null");
}
try {
OgnlContext ognlContext = new OgnlContext();
ognlContext.setMemberAccess(new DefaultMemberAccess(true));
Object ognlExpression = Ognl.parseExpression(property);
Object oldValue = null;
try {
Ognl.getValue(ognlExpression, ognlContext, target);