Package org.apache.airavata.gfac.core.persistence

Examples of org.apache.airavata.gfac.core.persistence.JobData


            while (resultSet.next()) {

                String jobId = resultSet.getString("job_id");
                int state = resultSet.getInt("status");

                jobs.add(new JobData(jobId, state));
            }

        } catch (SQLException e) {
            throw new GFacException(e);
        } finally {
View Full Code Here

TOP

Related Classes of org.apache.airavata.gfac.core.persistence.JobData

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.