summaryrefslogtreecommitdiff
path: root/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyConfigurationResources.java
blob: 12396639c0145181cf77fc2a74ef160811c0eef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
	}
}