Open Source Repository

Home /xwork/xwork-core-2.1.6 | Repository Home



com/opensymphony/xwork2/ognl/OgnlReflectionContextFactory.java
package com.opensymphony.xwork2.ognl;

import com.opensymphony.xwork2.util.reflection.ReflectionContextFactory;
import ognl.Ognl;

import java.util.Map;

public class OgnlReflectionContextFactory implements ReflectionContextFactory {

    public Map createDefaultContext(Object root) {
        return Ognl.createDefaultContext(root);
    }

}