SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / ListFiles.java
1 package com.smartdevicelink.proxy.rpc;\r
2 \r
3 import java.util.Hashtable;\r
4 \r
5 import com.smartdevicelink.proxy.RPCRequest;\r
6 \r
7 /**\r
8  * Requests the current list of resident filenames for the registered app. Not\r
9  * supported on First generation SMARTDEVICELINK vehicles\r
10  * <p>\r
11  * \r
12  * @since SmartDeviceLink 2.0\r
13  */\r
14 public class ListFiles extends RPCRequest {\r
15 \r
16         /**\r
17          * Constructs a new ListFiles object\r
18          */\r
19     public ListFiles() {\r
20         super("ListFiles");\r
21     }\r
22 \r
23         /**\r
24          * Constructs a new ListFiles object indicated by the Hashtable parameter\r
25          * <p>\r
26          * \r
27          * @param hash\r
28          *            The Hashtable to use\r
29          */\r
30     public ListFiles(Hashtable hash) {\r
31         super(hash);\r
32     }\r
33 }