示例#1
0
  public void postChangeSyllabus(SyllabusData data) {
    BaseResourceEdit bre = new BaseResourceEdit(data.getSyllabusId().toString(), data);

    addLiveSyllabusProperties(bre);

    bre.setEvent(EVENT_SYLLABUS_POST_CHANGE);

    String emailNotify = data.getEmailNotification();

    int priority;

    if (emailNotify.equalsIgnoreCase("none")) {
      priority = NotificationService.NOTI_NONE;
    } else if (emailNotify.equalsIgnoreCase("high")) {
      priority = NotificationService.NOTI_REQUIRED;
    } else if (emailNotify.equalsIgnoreCase("low")) {
      priority = NotificationService.NOTI_OPTIONAL;
    } else {
      priority = NotificationService.NOTI_NONE;
    }

    Event event = EventTrackingService.newEvent(bre.getEvent(), bre.getReference(), true, priority);

    EventTrackingService.post(event);
  }
示例#2
0
  public void deletePostedSyllabus(SyllabusData data) {
    BaseResourceEdit bre = new BaseResourceEdit(data.getSyllabusId().toString(), data);

    addLiveSyllabusProperties(bre);

    bre.setEvent(EVENT_SYLLABUS_DELETE_POST);

    String emailNotify = data.getEmailNotification();

    int priority;

    // for adding more logging info and not send out email notification
    //    if(emailNotify.equalsIgnoreCase("none"))
    //    {
    //      priority = NotificationService.NOTI_NONE;
    //    }
    //    else if(emailNotify.equalsIgnoreCase("high"))
    //    {
    //      priority = NotificationService.NOTI_REQUIRED;
    //    }
    //    else if(emailNotify.equalsIgnoreCase("low"))
    //    {
    //      priority = NotificationService.NOTI_OPTIONAL;
    //    }
    //    else
    //    {
    //      priority = NotificationService.NOTI_NONE;
    //    }
    priority = NotificationService.NOTI_NONE;

    Event event = EventTrackingService.newEvent(bre.getEvent(), bre.getReference(), true, priority);

    EventTrackingService.post(event);
  }
示例#3
0
  public void draftNewSyllabus(SyllabusData data) {
    BaseResourceEdit bre = new BaseResourceEdit(data.getSyllabusId().toString(), data);

    addLiveSyllabusProperties(bre);

    bre.setEvent(EVENT_SYLLABUS_DRAFT_NEW);

    int priority;

    priority = NotificationService.NOTI_NONE;

    Event event = EventTrackingService.newEvent(bre.getEvent(), bre.getReference(), true, priority);

    EventTrackingService.post(event);
  }