1 /*
2 * Copyright (C) 2024 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.bluetooth.pbapclient;
18
PbapPhonebookMetadata( String phonebook, int size, String databaseIdentifier, String primaryVersionCounter, String secondaryVersionCounter)19 record PbapPhonebookMetadata(
20 String phonebook,
21 // 2 byte number
22 int size,
23 // 16 byte number as string
24 String databaseIdentifier,
25 // 16 byte number as string
26 String primaryVersionCounter,
27 // 16 byte number as string
28 String secondaryVersionCounter) {
29 private static final String TAG = PbapPhonebookMetadata.class.getSimpleName();
30
31 public static final int INVALID_SIZE = -1;
32 public static final String INVALID_DATABASE_IDENTIFIER = null;
33 public static final String DEFAULT_DATABASE_IDENTIFIER = "0";
34 public static final String INVALID_VERSION_COUNTER = null;
35
36 @Override
37 public String toString() {
38 return "<"
39 + TAG
40 + (" phonebook=" + phonebook)
41 + (" size=" + size)
42 + (" databaseIdentifier=" + databaseIdentifier)
43 + (" primaryVersionCounter=" + primaryVersionCounter)
44 + (" secondaryVersionCounter=" + secondaryVersionCounter)
45 + ">";
46 }
47 }
48