Package at.molindo.notify.model

Examples of at.molindo.notify.model.Dispatch


    }

    String key = notification.getKey();
    Version version = cPrefs.getVersion();

    return new Dispatch(_renderService.render(key, version, params), params);
  }
View Full Code Here


    if (!channel.getNotificationTypes().contains(notification.getType())) {
      // channel not applicable for type
      throw new PushException("channel not applicable for type " + notification.getType(), false);
    }

    Dispatch dispatch = _dispatchService.create(notification, prefs, cPrefs);

    if (!channel.isConfigured(dispatch.getParams())) {
      // don't flood user after he configures this channel
      throw new PushException("channel not configured for user", false);
    }

    if (!ignoreFrequency && !Frequency.INSTANT.equals(cPrefs.getFrequency())) {
View Full Code Here

TOP

Related Classes of at.molindo.notify.model.Dispatch

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.