Examples of InvokingServiceFailedDocument


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

    public void invokingServiceFailed(WorkflowTrackingContext wtcontext, InvocationContext context, Throwable trace,
            String... descriptionAndAnnotation) {

        if (context == null)
            throw new RuntimeException("Context passed was NULL.");
        final InvokingServiceFailedDocument activity = InvokingServiceFailedDocument.Factory.newInstance();
        final AcknowledgeFailureType activityType = activity.addNewInvokingServiceFailed();

        // set the remote entity as receiver
        if (context.getRemoteEntity() != null) {
            activityType.addNewReceiver().set(context.getRemoteEntity().toBaseIDType());
        } else {
View Full Code Here

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

            String... descriptionAndAnnotation) {

        if (context == null)
            throw new RuntimeException("Context passed was NULL.");

        final InvokingServiceFailedDocument activity = InvokingServiceFailedDocument.Factory.newInstance();
        final AcknowledgeFailureType activityType = activity.addNewInvokingServiceFailed();

        // set the remote entity as receiver
        if (context.getRemoteEntity() != null) {
            activityType.addNewReceiver().set(context.getRemoteEntity().toBaseIDType());
        } else {
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.