SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / IProxyListener.java
1 package com.smartdevicelink.proxy;\r
2 \r
3 import com.smartdevicelink.proxy.interfaces.IProxyListenerBase;\r
4 import com.smartdevicelink.proxy.rpc.OnAppInterfaceUnregistered;\r
5 import com.smartdevicelink.proxy.rpc.RegisterAppInterfaceResponse;\r
6 import com.smartdevicelink.proxy.rpc.UnregisterAppInterfaceResponse;\r
7 \r
8 public interface IProxyListener extends IProxyListenerBase{\r
9         // Adds Legacy Life-cycle Management call-backs to the IProxyListenerAbstract interface\r
10         \r
11         public void onProxyOpened();\r
12         \r
13         public void onRegisterAppInterfaceResponse(RegisterAppInterfaceResponse response);\r
14 \r
15         public void onOnAppInterfaceUnregistered(OnAppInterfaceUnregistered notification);\r
16         \r
17         public void onUnregisterAppInterfaceResponse(UnregisterAppInterfaceResponse response);\r
18         \r
19 }\r