/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.server.wifi.hotspot2; import com.android.server.wifi.hotspot2.anqp.ANQPElement; import com.android.server.wifi.hotspot2.anqp.Constants; import java.util.HashMap; import java.util.Map; /** * This class carries the response of an ANQP request. */ public class AnqpEvent { private static final String TAG = "AnqpEvent"; private static final Map sWpsNames = new HashMap<>(); static { sWpsNames.put("anqp_venue_name", Constants.ANQPElementType.ANQPVenueName); sWpsNames.put("anqp_roaming_consortium", Constants.ANQPElementType.ANQPRoamingConsortium); sWpsNames.put("anqp_ip_addr_type_availability", Constants.ANQPElementType.ANQPIPAddrAvailability); sWpsNames.put("anqp_nai_realm", Constants.ANQPElementType.ANQPNAIRealm); sWpsNames.put("anqp_3gpp", Constants.ANQPElementType.ANQP3GPPNetwork); sWpsNames.put("anqp_domain_name", Constants.ANQPElementType.ANQPDomName); sWpsNames.put("hs20_operator_friendly_name", Constants.ANQPElementType.HSFriendlyName); sWpsNames.put("hs20_wan_metrics", Constants.ANQPElementType.HSWANMetrics); sWpsNames.put("hs20_connection_capability", Constants.ANQPElementType.HSConnCapability); sWpsNames.put("hs20_osu_providers_list", Constants.ANQPElementType.HSOSUProviders); } /** * Bssid of the access point. */ private final long mBssid; /** * Map of ANQP element type to the data retrieved from the access point. */ private final Map mElements; public AnqpEvent(long bssid, Map elements) { mBssid = bssid; mElements = elements; } /** * Get the bssid of the access point from which this ANQP result was created. */ public long getBssid() { return mBssid; } /** * Get the map of ANQP elements retrieved from the access point. */ public Map getElements() { return mElements; } }