1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.bluetooth; 18 19 import android.bluetooth.BluetoothDevice; 20 import android.content.ComponentName; 21 import android.content.Context; 22 import android.net.Uri; 23 24 import com.android.settingslib.bluetooth.BluetoothUtils; 25 26 import java.util.List; 27 28 /** 29 * Impl of {@link BluetoothFeatureProvider} 30 */ 31 public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider { 32 BluetoothFeatureProviderImpl(Context context)33 public BluetoothFeatureProviderImpl(Context context) {} 34 35 @Override getBluetoothDeviceSettingsUri(BluetoothDevice bluetoothDevice)36 public Uri getBluetoothDeviceSettingsUri(BluetoothDevice bluetoothDevice) { 37 final byte[] uriByte = bluetoothDevice.getMetadata( 38 BluetoothDevice.METADATA_ENHANCED_SETTINGS_UI_URI); 39 return uriByte == null ? null : Uri.parse(new String(uriByte)); 40 } 41 42 @Override getBluetoothDeviceControlUri(BluetoothDevice bluetoothDevice)43 public String getBluetoothDeviceControlUri(BluetoothDevice bluetoothDevice) { 44 return BluetoothUtils.getControlUriMetaData(bluetoothDevice); 45 } 46 47 @Override getRelatedTools()48 public List<ComponentName> getRelatedTools() { 49 return null; 50 } 51 } 52