is a helper class with numerous static
methods to aid in the conversion of Geronimo-specific deployment plans from
one JAXB version to another (e.g., v1.1 to v2.1)
Method from org.apache.geronimo.st.core.jaxb.ConversionHelper Detail: |
public static void convertGeronimoApplicationClientFile(IFile plan) throws Exception {
Trace.tracePoint("Entry", "ConversionHelper.convertGeronimoApplicationClientFile", plan);
convertNamespace( plan );
Trace.tracePoint("Exit ", "ConversionHelper.convertGeronimoApplicationClientFile");
}
Convert a geronimo-application-client.xml deployment plan file
and return the JAXB representation |
public static void convertGeronimoApplicationFile(IFile plan) throws Exception {
Trace.tracePoint("Entry", "ConversionHelper.convertGeronimoApplicationFile", plan);
convertNamespace( plan );
Trace.tracePoint("Exit ", "ConversionHelper.convertGeronimoApplicationFile");
}
Convert a geronimo-application.xml deployment plan file (if necessary)
and return the JAXB representation |
public static void convertGeronimoRaFile(IFile plan) throws Exception {
Trace.tracePoint("Entry", "ConversionHelper.convertGeronimoRaFile", plan);
convertNamespace( plan );
Trace.tracePoint("Exit ", "ConversionHelper.convertGeronimoRaFile");
}
Convert a geronimo-ra.xml deployment plan file (if necessary)
and return the JAXB representation |
public static void convertGeronimoWebFile(IFile plan) throws Exception {
Trace.tracePoint("Entry", "ConversionHelper.convertGeronimoWebFile", plan);
convertNamespace( plan );
Trace.tracePoint("Exit ", "ConversionHelper.convertGeronimoWebFile");
}
Convert a geronimo-web.xml deployment plan file (if necessary)
and return the JAXB representation |
public static void convertOpenEjbJarFile(IFile plan) throws Exception {
Trace.tracePoint("Entry", "ConversionHelper.convertGeronimoOpenEjbFile", plan);
convertNamespace( plan );
Trace.tracePoint("Exit ", "ConversionHelper.convertGeronimoOpenEjbFile");
}
Convert an openejb-jar.xml deployment plan file (if necessary) and return the
JAXB representation |