Package org.kuali.rice.ken.api.notification

Examples of org.kuali.rice.ken.api.notification.NotificationResponse


        try {
          TestUtils utils = new TestUtils();
          // send notification
          final SendNotificationService sendNotificationService = (SendNotificationService) GlobalResourceLoader.getService(
              new QName(KenApiConstants.Namespaces.KEN_NAMESPACE_2_0, "sendNotificationService"));
          NotificationResponse response = sendNotificationService.invoke(utils.getTestNotificationXml());
     
          assertEquals("response status is not success", NotificationConstants.RESPONSE_STATUSES.SUCCESS, response.getStatus());
        } catch (Exception e) {
          log.error("exception occured", e);
          fail("exception occured");
        }
       
View Full Code Here

TOP

Related Classes of org.kuali.rice.ken.api.notification.NotificationResponse

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.