Added Mike's tester application (not ideal but easy to update)
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / transport / ISmartDeviceLinkTransport.java
1 //
2 // Copyright (c) 2013 Ford Motor Company
3 //
4 package com.smartdevicelink.transport;
5
6 import com.smartdevicelink.exception.SmartDeviceLinkException;
7
8 public interface ISmartDeviceLinkTransport {
9         
10         void connect() throws SmartDeviceLinkException;
11
12         void disconnect();
13
14         boolean sendBytes(byte[] message);
15         boolean sendBytes(byte[] message, int offset, int length);
16
17         void addTransportListener(ITransportListener transListener);
18         
19         String getGuid();       
20         String getAppName();    
21         void setAppName(String appName);
22 }