1 package com.android.server.wifi.hotspot2.anqp;
2 
3 /**
4  * Base class for an IEEE802.11u ANQP element.
5  */
6 public abstract class ANQPElement {
7     private final Constants.ANQPElementType mID;
8 
ANQPElement(Constants.ANQPElementType id)9     protected ANQPElement(Constants.ANQPElementType id) {
10         mID = id;
11     }
12 
getID()13     public Constants.ANQPElementType getID() {
14         return mID;
15     }
16 }
17