Package org.apache.airavata.workflow.tracking.impl.state

Examples of org.apache.airavata.workflow.tracking.impl.state.DataObjImpl


     *
     */
    public DataObj dataConsumed(WorkflowTrackingContext context, URI dataId, List<URI> locations,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations);
        return dataConsumed(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here


    }

    public DataObj dataConsumed(WorkflowTrackingContext context, URI dataId, List<URI> locations, int sizeInBytes,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations, sizeInBytes);
        return dataConsumed(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here

     *
     */
    public DataObj dataProduced(WorkflowTrackingContext context, URI dataId, List<URI> locations,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations);
        return dataProduced(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here

    }

    public DataObj dataProduced(WorkflowTrackingContext context, URI dataId, List<URI> locations, int sizeInBytes,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations, sizeInBytes);
        return dataProduced(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here

        List<URI> locations = new ArrayList<URI>(2);
        locations.add(localLocation);
        locations.add(remoteLocation);

        DataObj dataObj = new DataObjImpl(dataID, locations, sizeInBytes);
        DataDurationObj dataDurationObj = new DataDurationImpl(dataObj, remoteLocation, durationMillis);

        return dataSendFinished(context, dataDurationObj, descriptionAndAnnotation);
    }
View Full Code Here

        List<URI> locations = new ArrayList<URI>(2);
        locations.add(localLocation);
        locations.add(remoteLocation);

        DataObj dataObj = new DataObjImpl(dataID, locations);
        DataDurationObj dataDurationObj = new DataDurationImpl(dataObj, remoteLocation);

        return dataDurationObj;
    }
View Full Code Here

        List<URI> locations = new ArrayList<URI>(2);
        locations.add(localLocation);
        locations.add(remoteLocation);

        DataObj dataObj = new DataObjImpl(dataID, locations, sizeInBytes);
        DataDurationObj dataDurationObj = new DataDurationImpl(dataObj, remoteLocation, durationMillis);

        return dataReceiveFinished(context, dataDurationObj, descriptionAndAnnotation);
    }
View Full Code Here

                URI.create("workflowID"), URI.create("serviceID"), "workflowNodeID", new Integer(1));
        notifier.publishURL(context, "title", "http://www.google.com", "descriptionAndAnnotation");

        notifier.workflowInitialized(context, WORKFLOW_INSTANCE_ID);

        DataObjImpl dataObj = new DataObjImpl(URI.create("test"), new ArrayList<URI>());
        notifier.dataConsumed(context, dataObj, "description");
    }
View Full Code Here

     *
     */
    public DataObj dataConsumed(WorkflowTrackingContext context, URI dataId, List<URI> locations,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations);
        return dataConsumed(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here

    }

    public DataObj dataConsumed(WorkflowTrackingContext context, URI dataId, List<URI> locations, int sizeInBytes,
            String... descriptionAndAnnotation) {

        DataObj dataObj = new DataObjImpl(dataId, locations, sizeInBytes);
        return dataConsumed(context, dataObj, descriptionAndAnnotation);
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.tracking.impl.state.DataObjImpl

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.