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

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


            XmlObject faultBody, String... descriptionAndAnnotation) {

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

        SendingFaultDocument activity = SendingFaultDocument.Factory.newInstance();
        FaultResponderType activityType = activity.addNewSendingFault();

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


            XmlObject faultBody, String... descriptionAndAnnotation) {

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

        SendingFaultDocument activity = SendingFaultDocument.Factory.newInstance();
        FaultResponderType activityType = activity.addNewSendingFault();

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

TOP

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

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.