Package org.jberet.job

Examples of org.jberet.job.BatchArtifacts


     * @param classLoader the applicaton classloader used to load batch xml
     * @return the batch artifacts definition object
     */
    public static BatchArtifacts loadBatchXml(ClassLoader classLoader) throws JobStartException {
        InputStream is;
        BatchArtifacts batchArtifacts = null;
        is = classLoader.getResourceAsStream(ARCHIVE_BATCH_XML);
        if (is == null) {  //the app doesn't contain META-INF/batch.xml
            return null;
        }

View Full Code Here

TOP

Related Classes of org.jberet.job.BatchArtifacts

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.