SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / PerformAudioPassThruResponse.java
1 package com.smartdevicelink.proxy.rpc;\r
2 \r
3 import java.util.Hashtable;\r
4 \r
5 import com.smartdevicelink.proxy.RPCResponse;\r
6 \r
7 /**\r
8  * Perform Audio Pass Thru Response is sent, when PerformAudioPassThru has been called\r
9  * \r
10  * @since SmartDeviceLink 2.0\r
11  */\r
12 public class PerformAudioPassThruResponse extends RPCResponse {\r
13 \r
14         /**\r
15          * Constructs a new PerformAudioPassThruResponse object\r
16          */\r
17     public PerformAudioPassThruResponse() {\r
18         super("PerformAudioPassThru");\r
19     }\r
20 \r
21         /**\r
22          * Constructs a new PerformAudioPassThruResponse object indicated by the Hashtable\r
23          * parameter\r
24          * <p>\r
25          * \r
26          * @param hash\r
27          *            The Hashtable to use\r
28          */\r
29     public PerformAudioPassThruResponse(Hashtable hash) {\r
30         super(hash);\r
31     }\r
32 }