summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java')
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java67
1 files changed, 0 insertions, 67 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java
deleted file mode 100755
index 776f43770..000000000
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/OnAudioPassThru.java
+++ /dev/null
@@ -1,67 +0,0 @@
-package com.smartdevicelink.proxy.rpc;
-
-import java.util.Hashtable;
-
-import com.smartdevicelink.proxy.RPCNotification;
-import com.smartdevicelink.proxy.constants.Names;
-
-/**
- * Binary data is in binary part of hybrid msg.
- * <p>
- * </p>
- * <b>HMI Status Requirements:</b>
- * <ul>
- * HMILevel:
- * <ul>
- * <li>BACKGROUND, FULL, LIMITED</li>
- * </ul>
- * AudioStreamingState:
- * <ul>
- * <li>TBD</li>
- * </ul>
- * SystemContext:
- * <ul>
- * <li>TBD</li>
- * </ul>
- * </ul>
- * <p>
- * <b>Parameter List:</b>
- * <table border="1" rules="all">
- * <tr>
- * <th>Name</th>
- * <th>Type</th>
- * <th>Description</th>
- * <th>Req</th>
- * <th>Notes</th>
- * <th>Applink Ver Available</th>
- * </tr>
-
- * </table>
- * </p>
- *
- */
-public class OnAudioPassThru extends RPCNotification {
- /**
- *Constructs a newly allocated OnCommand object
- */
- public OnAudioPassThru() {
- super("OnAudioPassThru");
- }
- /**
- *<p>Constructs a newly allocated OnAudioPassThru object indicated by the Hashtable parameter</p>
- *@param hash The Hashtable to use
- */
- public OnAudioPassThru(Hashtable hash) {
- super(hash);
- }
- public void setAPTData(byte[] aptData) {
- if (aptData != null) {
- store.put(Names.bulkData, aptData);
- } else {
- store.remove(Names.bulkData);
- }
- }
- public byte[] getAPTData() {
- return (byte[]) store.get(Names.bulkData);
- }
-}