Home | History | Annotate | Download | only in anqp
      1 package com.android.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 
      9     protected ANQPElement(Constants.ANQPElementType id) {
     10         mID = id;
     11     }
     12 
     13     public Constants.ANQPElementType getID() {
     14         return mID;
     15     }
     16 }
     17