blob: aff4f52f2bab9c1df4e77a6c07c3cb41ae28485a [file] [log] [blame]
Nick Pellyc84c89a2011-08-22 22:27:11 -07001/*
2 * Copyright (C) 2011 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
17package android.nfc;
18
19/**
20 * Wraps information associated with any NFC event.
21 *
22 * <p>Immutable object, with direct access to the (final) fields.
23 *
24 * <p>An {@link NfcEvent} object is usually included in callbacks from
25 * {@link NfcAdapter}. Check the documentation of the callback to see
26 * which fields may be set.
27 *
28 * <p>This wrapper object is used (instead of parameters
29 * in the callback) because it allows new fields to be added without breaking
30 * API compatibility.
31 *
Scott Main2d68a6b2011-09-26 22:59:38 -070032 * @see NfcAdapter.OnNdefPushCompleteCallback#onNdefPushComplete
33 * @see NfcAdapter.CreateNdefMessageCallback#createNdefMessage
Nick Pellyc84c89a2011-08-22 22:27:11 -070034 */
35public final class NfcEvent {
36 /**
37 * The {@link NfcAdapter} associated with the NFC event.
38 */
39 public final NfcAdapter nfcAdapter;
40
Martijn Coenenfd70bb12015-04-14 11:38:21 +020041 /**
Martijn Coenenbdc34b82015-06-10 08:49:02 +020042 * The major LLCP version number of the peer associated with the NFC event.
Martijn Coenenfd70bb12015-04-14 11:38:21 +020043 */
Martijn Coenenbdc34b82015-06-10 08:49:02 +020044 public final int peerLlcpMajorVersion;
45
46 /**
47 * The minor LLCP version number of the peer associated with the NFC event.
48 */
49 public final int peerLlcpMinorVersion;
Martijn Coenenfd70bb12015-04-14 11:38:21 +020050
51 NfcEvent(NfcAdapter nfcAdapter, byte peerLlcpVersion) {
Nick Pellyc84c89a2011-08-22 22:27:11 -070052 this.nfcAdapter = nfcAdapter;
Martijn Coenenbdc34b82015-06-10 08:49:02 +020053 this.peerLlcpMajorVersion = (peerLlcpVersion & 0xF0) >> 4;
54 this.peerLlcpMinorVersion = peerLlcpVersion & 0x0F;
Nick Pellyc84c89a2011-08-22 22:27:11 -070055 }
56}