SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / rpc / UnregisterAppInterface.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  * Terminates an application's interface registration. This causes SMARTDEVICELINK® to\r
9  * dispose of all resources associated with the application's interface\r
10  * registration (e.g. Command Menu items, Choice Sets, button subscriptions,\r
11  * etc.)\r
12  * <p>\r
13  * After the UnregisterAppInterface operation is performed, no other operations\r
14  * can be performed until a new app interface registration is established by\r
15  * calling <i>{@linkplain RegisterAppInterface}</i>\r
16  * <p>\r
17  * <b>HMILevel can be FULL, LIMITED, BACKGROUND or NONE</b>\r
18  * </p>\r
19  * \r
20  * @see RegisterAppInterface\r
21  * @see OnAppInterfaceUnregistered\r
22  */\r
23 public class UnregisterAppInterface extends RPCRequest {\r
24         /**\r
25          * Constructs a new UnregisterAppInterface object\r
26          */\r
27     public UnregisterAppInterface() {\r
28         super("UnregisterAppInterface");\r
29     }\r
30         /**\r
31          * Constructs a new UnregisterAppInterface object indicated by the Hashtable\r
32          * parameter\r
33          * <p>\r
34          * \r
35          * @param hash\r
36          *            The Hashtable to use\r
37          */    \r
38     public UnregisterAppInterface(Hashtable hash) {\r
39         super(hash);\r
40     }\r
41 }