try {
if (plan instanceof XmlObject) {
rawPlan = (XmlObject) plan;
} else {
if (plan != null) {
OpenejbEjbJarDocument document = (OpenejbEjbJarDocument) XmlBeansUtil.parse(((File) plan).toURL(), XmlUtil.class.getClassLoader());
rawPlan = document.getEjbJar();
} else {
URL path = DeploymentUtil.createJarURL(moduleFile, "META-INF/geronimo-openejb.xml");
rawPlan = XmlBeansUtil.parse(path, XmlUtil.class.getClassLoader());
}
}