/******************************************************************************* * Copyright (c) 2011, 2016 Eurotech and/or its affiliates * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Eurotech *******************************************************************************/ package org.eclipse.kura.bluetooth.listener; public class AdvertisingReportRecord { private int eventType; private int addressType; private String address; private byte[] reportData; private int length; public AdvertisingReportRecord() { } public int getEventType() { return this.eventType; } public void setEventType(int eventType) { this.eventType = eventType; } public int getAddressType() { return this.addressType; } public void setAddressType(int addressType) { this.addressType = addressType; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public byte[] getReportData() { return this.reportData; } public void setReportData(byte[] reportData) { this.reportData = reportData; } public int getLength() { return this.length; } public void setLength(int length) { this.length = length; } }