summaryrefslogtreecommitdiff
path: root/service/java/com/android/server/wifi/hotspot2/IconEvent.java
diff options
context:
space:
mode:
Diffstat (limited to 'service/java/com/android/server/wifi/hotspot2/IconEvent.java')
-rw-r--r--service/java/com/android/server/wifi/hotspot2/IconEvent.java39
1 files changed, 0 insertions, 39 deletions
diff --git a/service/java/com/android/server/wifi/hotspot2/IconEvent.java b/service/java/com/android/server/wifi/hotspot2/IconEvent.java
deleted file mode 100644
index 406c03cd3..000000000
--- a/service/java/com/android/server/wifi/hotspot2/IconEvent.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.android.server.wifi.hotspot2;
-
-public class IconEvent {
- private final long mBSSID;
- private final String mFileName;
- private final int mSize;
- private final byte[] mData;
-
- public IconEvent(long bssid, String fileName, int size, byte[] data) {
- mBSSID = bssid;
- mFileName = fileName;
- mSize = size;
- mData = data;
- }
-
- public long getBSSID() {
- return mBSSID;
- }
-
- public String getFileName() {
- return mFileName;
- }
-
- public int getSize() {
- return mSize;
- }
-
- public byte[] getData() {
- return mData;
- }
-
- @Override
- public String toString() {
- return "IconEvent: " +
- "BSSID=" + String.format("%012x", mBSSID) +
- ", fileName='" + mFileName + '\'' +
- ", size=" + mSize;
- }
-}