summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java')
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java41
1 files changed, 0 insertions, 41 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java
deleted file mode 100755
index 20665f22f..000000000
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/rpc/UnregisterAppInterface.java
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.smartdevicelink.proxy.rpc;
-
-import java.util.Hashtable;
-
-import com.smartdevicelink.proxy.RPCRequest;
-
-/**
- * Terminates an application's interface registration. This causes SMARTDEVICELINK® to
- * dispose of all resources associated with the application's interface
- * registration (e.g. Command Menu items, Choice Sets, button subscriptions,
- * etc.)
- * <p>
- * After the UnregisterAppInterface operation is performed, no other operations
- * can be performed until a new app interface registration is established by
- * calling <i>{@linkplain RegisterAppInterface}</i>
- * <p>
- * <b>HMILevel can be FULL, LIMITED, BACKGROUND or NONE</b>
- * </p>
- *
- * @see RegisterAppInterface
- * @see OnAppInterfaceUnregistered
- */
-public class UnregisterAppInterface extends RPCRequest {
- /**
- * Constructs a new UnregisterAppInterface object
- */
- public UnregisterAppInterface() {
- super("UnregisterAppInterface");
- }
- /**
- * Constructs a new UnregisterAppInterface object indicated by the Hashtable
- * parameter
- * <p>
- *
- * @param hash
- * The Hashtable to use
- */
- public UnregisterAppInterface(Hashtable hash) {
- super(hash);
- }
-} \ No newline at end of file