SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / ResetGlobalPropertiesResponse.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  * Reset Global Properties Response is sent, when ResetGlobalProperties has been called\r
9  * \r
10  * @since SmartDeviceLink 1.0\r
11  */\r
12 public class ResetGlobalPropertiesResponse extends RPCResponse {\r
13 \r
14         /**\r
15          * Constructs a new ResetGlobalPropertiesResponse object\r
16          */\r
17     public ResetGlobalPropertiesResponse() {\r
18         super("ResetGlobalProperties");\r
19     }\r
20 \r
21         /**\r
22          * Constructs a new ResetGlobalPropertiesResponse 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 ResetGlobalPropertiesResponse(Hashtable hash) {\r
30         super(hash);\r
31     }\r
32 }