Package org.apache.airavata.workflow.tracking.types

Examples of org.apache.airavata.workflow.tracking.types.DataProducedDocument


        if (dataObj == null)
            throw new RuntimeException("Data object passed was NULL.");
        if (dataObj.getId() == null)
            throw new RuntimeException("Data object's ID was NULL.");

        DataProducedDocument activity = DataProducedDocument.Factory.newInstance();
        DataProductNotificationType activityType = activity.addNewDataProduced();

        // set the data product to the produced data
        DataProductType dataProduct = activityType.addNewDataProduct();
        // set data ID and size
        dataProduct.setId(dataObj.getId().toString());
View Full Code Here


        if (dataObj == null)
            throw new RuntimeException("Data object passed was NULL.");
        if (dataObj.getId() == null)
            throw new RuntimeException("Data object's ID was NULL.");

        DataProducedDocument activity = DataProducedDocument.Factory.newInstance();
        DataProductNotificationType activityType = activity.addNewDataProduced();

        // set the data product to the produced data
        DataProductType dataProduct = activityType.addNewDataProduct();
        // set data ID and size
        dataProduct.setId(dataObj.getId().toString());
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.tracking.types.DataProducedDocument

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.