Examples of GFac


Examples of org.apache.airavata.gfac.core.cpi.GFac

     * @param taskId
     * @param gatewayId
     */
    public boolean submitJob(String experimentId, String taskId, String gatewayId) throws TException {
        logger.info("GFac Recieved the Experiment: " + experimentId + " TaskId: " + taskId);
        GFac gfac = getGfac();
        try {
            return gfac.submitJob(experimentId, taskId, gatewayId);
        } catch (GFacException e) {
            throw new TException("Error launching the experiment : " + e.getMessage(), e);
        }
    }
View Full Code Here

Examples of org.apache.airavata.gfac.core.cpi.GFac

    public String getGFACServiceVersion() throws TException {
        return gfac_cpi_serviceConstants.GFAC_CPI_VERSION;
    }

    public boolean submitJob(String experimentId, String taskId) throws TException {
        GFac gfac = getGfac();
        try {
            return gfac.submitJob(experimentId, taskId);
        } catch (GFacException e) {
            throw new TException("Error launching the experiment : " + e.getMessage(), e);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.