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

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


     *
     */
    public InvocationContext serviceInvoked(WorkflowTrackingContext context, InvocationEntity initiator,
            XmlObject header, XmlObject body, String... descriptionAndAnnotation) {

        ServiceInvokedDocument activity = ServiceInvokedDocument.Factory.newInstance();
        RequestReceiverType activityType = activity.addNewServiceInvoked();

        // create the invocation context; set the initiator to the remote entity
        InvocationContextImpl invocationContext = new InvocationContextImpl(context.getMyself(), initiator);
        if (initiator != null) {
            activityType.addNewInitiator().set(initiator.toBaseIDType());
View Full Code Here


     *
     */
    public InvocationContext serviceInvoked(WorkflowTrackingContext context, InvocationEntity initiator,
            XmlObject header, XmlObject body, String... descriptionAndAnnotation) {

        ServiceInvokedDocument activity = ServiceInvokedDocument.Factory.newInstance();
        RequestReceiverType activityType = activity.addNewServiceInvoked();

        // create the invocation context; set the initiator to the remote entity
        InvocationContextImpl invocationContext = new InvocationContextImpl(context.getMyself(), initiator);
        if (initiator != null) {
            activityType.addNewInitiator().set(initiator.toBaseIDType());
View Full Code Here

TOP

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

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.