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

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


        pub.setLocation(url);
        sendNotification(context, pubMsg, descriptionAndAnnotation, null);
    }

    public void warning(WorkflowTrackingContext context, String... descriptionAndAnnotation) {
        LogWarningDocument logMsg = LogWarningDocument.Factory.newInstance();
        BaseNotificationType log = logMsg.addNewLogWarning();
        sendNotification(context, logMsg, descriptionAndAnnotation, null);
    }
View Full Code Here

TOP

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

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.