SDL_Android/SmartDeviceLinkAndroidProxy - added the correct version of the proxy
[profile/ivi/smartdevicelink.git] / SDL_Android / SmartDeviceLinkProxyAndroid / src / com / smartdevicelink / proxy / SmartDeviceLinkProxyConfigurationResources.java
1 package com.smartdevicelink.proxy;\r
2 \r
3 import android.telephony.TelephonyManager;\r
4 \r
5 public class SmartDeviceLinkProxyConfigurationResources {\r
6         private String _smartDeviceLinkConfigurationFilePath;\r
7         private TelephonyManager _telephonyManager;\r
8         \r
9         public SmartDeviceLinkProxyConfigurationResources() {\r
10                 this(null, null);\r
11         }\r
12         \r
13         public SmartDeviceLinkProxyConfigurationResources(String smartDeviceLinkConfigurationFilePath, \r
14                         TelephonyManager telephonyManager) {\r
15                 _smartDeviceLinkConfigurationFilePath = smartDeviceLinkConfigurationFilePath;\r
16                 _telephonyManager = telephonyManager;\r
17         }\r
18         \r
19         public void setSmartDeviceLinkConfigurationFilePath(String smartDeviceLinkConfigurationFilePath) {\r
20                 _smartDeviceLinkConfigurationFilePath = smartDeviceLinkConfigurationFilePath;\r
21         }\r
22         \r
23         public String getSmartDeviceLinkConfigurationFilePath() {\r
24                 return _smartDeviceLinkConfigurationFilePath;\r
25         }\r
26         \r
27         public void setTelephonyManager(TelephonyManager telephonyManager) {\r
28                 _telephonyManager = telephonyManager;\r
29         }\r
30         \r
31         public TelephonyManager getTelephonyManager() {\r
32                 return _telephonyManager;\r
33         }\r
34 }\r