private String topic;
public MessageBoxNotificationHandler(String messageBoxUrl, String brokerURL) {
if (messageBoxUrl == null || "".equals(messageBoxUrl)) {
logger.error("Invalid messagebox Location :" + messageBoxUrl);
throw new WorkflowTrackingException("BrokerLocation should be not null messaboxUrl:" + messageBoxUrl);
}
if (brokerURL == null || "".equals(brokerURL)) {
logger.error("Invalid broker Location :" + brokerURL);
throw new WorkflowTrackingException("BrokerLocation should be not null brokerurl:" + brokerURL);
}
this.messageBoxUrl = messageBoxUrl;
this.brokerURL = brokerURL;
}