+ (MUIBeaconNotification *) showClipboardPasswordNotification:(OBString *)message
+ (MUIBeaconNotification *) showClipboardPasswordRemovedNotification:(OBString *)message
+ (MUIBeaconNotification *) showClipboardScreenshotNotification:(OBString *)message
+ (MUIBeaconNotification *) showClipboardWindowshotNotification:(OBString *)message
+ (MUIBeaconNotification *) showConnectedNotification:(OBString *)message
+ (MUIBeaconNotification *) showConnectionFailedNotification:(OBString *)message
+ (MUIBeaconNotification *) showDisconnectedNotification:(OBString *)message
+ (MUIBeaconNotification *) showErrorNotification:(OBString *)message
+ (MUIBeaconNotification *) showNewMailNotification:(OBString *)message
+ (MUIBeaconNotification *) showNewMessageNotification:(OBString *)message
+ (MUIBeaconNotification *) showNewPrivateMessageNotification:(OBString *)message
+ (MUIBeaconNotification *) showNewRSSNotification:(OBString *)message
+ (MUIBeaconNotification *) showNotificationWithName:(OBString *)name message:(OBString *)message
+ (MUIBeaconNotification *) showOperationDoneNotification:(OBString *)message
+ (MUIBeaconNotification *) showScreenshotNotification:(OBString *)message
+ (MUIBeaconNotification *) showTrackLastNotification:(OBString *)message
+ (MUIBeaconNotification *) showTrackNextNotification:(OBString *)message
+ (MUIBeaconNotification *) showTransferAbortedNotification:(OBString *)message
+ (MUIBeaconNotification *) showTransferCompleteNotification:(OBString *)message
+ (MUIBeaconNotification *) showTransferDoneNotification:(OBString *)message
+ (MUIBeaconNotification *) showTransferFailedNotification:(OBString *)message
+ (MUIBeaconNotification *) showUpdateAvailableNotification:(OBString *)message
+ (MUIBeaconNotification *) showWebNotification:(OBString *)message
+ (MUIBeaconNotification *) showWindowshotNotification:(OBString *)message
- (OBString *) applicationName

Overload to provide a custom application name. Otherwise, MUIApplication's title will be used

- (id) initWithName:(OBString *)name message:(OBString *)message

Initializer to be used in case you want to send the message later on, etc

- (OBString *) message

The message that'll be displayed in the notification bubble This method may be overloaded, otherwise the string passed into the initializer will be used

- (OBString *) name

Name (type) of the notification. MagicBeacon will generally create an ID in the form of "applicationName.name" which the user will then be able to configure. There are several standard, predefined messages defined in magicbeacon.h, like MBN_ERROR which should be used instead of custom names where appropriate This method may be overloaded, otherwise the string passed into the initializer will be used

- (void) notificationProcessedWithResult:(MUIBeaconNotificationResult)result

Overload to handle the result, if needed. Will always be called on the main run loop

- (void) showNotification

Sends the notification, only needed if message was created using initWithName:message: