summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java')
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java
deleted file mode 100755
index 12396639c..000000000
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.smartdevicelink.proxy;
-
-import android.telephony.TelephonyManager;
-
-public class SmartDeviceLinkProxyConfigurationResources {
- private String _smartDeviceLinkConfigurationFilePath;
- private TelephonyManager _telephonyManager;
-
- public SmartDeviceLinkProxyConfigurationResources() {
- this(null, null);
- }
-
- public SmartDeviceLinkProxyConfigurationResources(String smartDeviceLinkConfigurationFilePath,
- TelephonyManager telephonyManager) {
- _smartDeviceLinkConfigurationFilePath = smartDeviceLinkConfigurationFilePath;
- _telephonyManager = telephonyManager;
- }
-
- public void setSmartDeviceLinkConfigurationFilePath(String smartDeviceLinkConfigurationFilePath) {
- _smartDeviceLinkConfigurationFilePath = smartDeviceLinkConfigurationFilePath;
- }
-
- public String getSmartDeviceLinkConfigurationFilePath() {
- return _smartDeviceLinkConfigurationFilePath;
- }
-
- public void setTelephonyManager(TelephonyManager telephonyManager) {
- _telephonyManager = telephonyManager;
- }
-
- public TelephonyManager getTelephonyManager() {
- return _telephonyManager;
- }
-}