net.rim.pushsdk.commons.content
Class ThreeGPAudioContent
java.lang.Object
net.rim.pushsdk.commons.content.Content
net.rim.pushsdk.commons.content.SinglePartContent
net.rim.pushsdk.commons.content.BinaryContent
net.rim.pushsdk.commons.content.ThreeGPAudioContent
public class ThreeGPAudioContent
- extends BinaryContent
Represents 3GP audio content. The content-type header is set to audio/3gpp.
- Author:
- mdandrea
|
Constructor Summary |
ThreeGPAudioContent(byte[] content,
boolean shouldBase64Encode)
Constructs a 3GP audio with the specified content. |
ThreeGPAudioContent(File file,
boolean shouldBase64Encode)
Constructs a 3GP audio from the specified file. |
ThreeGPAudioContent(URL url,
boolean shouldBase64Encode)
Constructs a 3GP audio from the specified URL. |
|
Method Summary |
protected void |
checkExtension(String string)
Verifies that the audio ends in the .3gp or .3g2 file extension. |
String |
toString()
Constructs a String with all attributes in name = value format. |
ThreeGPAudioContent
public ThreeGPAudioContent(byte[] content,
boolean shouldBase64Encode)
- Constructs a 3GP audio with the specified content. The audio is base64 encoded if requested.
- Parameters:
content - the 3GP audio contentshouldBase64Encode - true if the content should be base64 encoded; false otherwise
ThreeGPAudioContent
public ThreeGPAudioContent(File file,
boolean shouldBase64Encode)
throws IOException
- Constructs a 3GP audio from the specified file. The audio is base64 encoded if requested.
- Parameters:
file - the 3GP audio fileshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the file
ThreeGPAudioContent
public ThreeGPAudioContent(URL url,
boolean shouldBase64Encode)
throws IOException
- Constructs a 3GP audio from the specified URL. The audio is base64 encoded if requested.
- Parameters:
url - the 3GP audio URLshouldBase64Encode - true if the content should be base64 encoded; false otherwise
- Throws:
IOException - if any IO errors occur reading from the URL
checkExtension
protected void checkExtension(String string)
- Verifies that the audio ends in the .3gp or .3g2 file extension.
- Overrides:
checkExtension in class SinglePartContent
- Parameters:
string - the file name
toString
public String toString()
- Constructs a
String with all attributes in name = value format.
- Overrides:
toString in class BinaryContent
- Returns:
- a
String representation of this object.
Copyright © 2011 Research In Motion. All Rights Reserved.