Interface VoiceMessagingService
-
public interface VoiceMessagingServiceThe VoiceMessagingService object is accessible from the User object, providing voicemail status updates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddListener(VoiceMessagingServiceListener listener)Adds a listener.java.lang.StringgetVoicemailNumber()VoiceMessagingStatusParametersgetVoiceMessagingStatus()voidremoveListener(VoiceMessagingServiceListener listener)Removes a listener.
-
-
-
Method Detail
-
addListener
void addListener(VoiceMessagingServiceListener listener)
Adds a listener.- Parameters:
listener- Listener instance to be added.
-
removeListener
void removeListener(VoiceMessagingServiceListener listener)
Removes a listener.- Parameters:
listener- Listener instance to be removed.
-
getVoicemailNumber
java.lang.String getVoicemailNumber()
- Returns:
- the voice mail number for the user.
-
getVoiceMessagingStatus
VoiceMessagingStatusParameters getVoiceMessagingStatus()
- Returns:
VoiceMessagingStatusParametersobject indicating whether there is a voicemail Message waiting.
-
-