1 // Copyright 2022, The Android Open Source Project 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 //! Name of java classes for UWB response and notifications: 16 pub(crate) const CONFIG_STATUS_DATA_CLASS: &str = "com/android/server/uwb/data/UwbConfigStatusData"; 17 pub(crate) const MULTICAST_LIST_UPDATE_STATUS_CLASS: &str = 18 "com/android/server/uwb/data/UwbMulticastListUpdateStatus"; 19 pub(crate) const POWER_STATS_CLASS: &str = "com/android/server/uwb/info/UwbPowerStats"; 20 pub(crate) const TLV_DATA_CLASS: &str = "com/android/server/uwb/data/UwbTlvData"; 21 pub(crate) const UWB_DEVICE_INFO_RESPONSE_CLASS: &str = 22 "com/android/server/uwb/data/UwbDeviceInfoResponse"; 23 pub(crate) const UWB_RANGING_DATA_CLASS: &str = "com/android/server/uwb/data/UwbRangingData"; 24 pub(crate) const UWB_TWO_WAY_MEASUREMENT_CLASS: &str = 25 "com/android/server/uwb/data/UwbTwoWayMeasurement"; 26 pub(crate) const UWB_OWR_AOA_MEASUREMENT_CLASS: &str = 27 "com/android/server/uwb/data/UwbOwrAoaMeasurement"; 28 pub(crate) const VENDOR_RESPONSE_CLASS: &str = "com/android/server/uwb/data/UwbVendorUciResponse"; 29 pub(crate) const DT_RANGING_ROUNDS_STATUS_CLASS: &str = 30 "com/android/server/uwb/data/DtTagUpdateRangingRoundsStatus"; 31 pub(crate) const UWB_DL_TDOA_MEASUREMENT_CLASS: &str = 32 "com/android/server/uwb/data/UwbDlTDoAMeasurement"; 33 pub(crate) const UWB_RADAR_DATA_CLASS: &str = "com/android/server/uwb/data/UwbRadarData"; 34 pub(crate) const UWB_RADAR_SWEEP_DATA_CLASS: &str = "com/android/server/uwb/data/UwbRadarSweepData"; 35