/**
  * Sets {@link Notification#setName(String)}.
  *
  * @param name The name of the notification type.
  * @return The builder.
  */
 public B name(String name) {
   notification.setName(name);
   return self();
 }