1 /* 2 * Copyright (C) 2016 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.server.wifi.hotspot2.anqp.eap; 18 19 /** 20 * An Authentication parameter, part of the NAI Realm ANQP element, specified in 21 * IEEE802.11-2012 section 8.4.4.10, table 8-188 22 */ 23 public abstract class AuthParam { 24 public static final int PARAM_TYPE_EXPANDED_EAP_METHOD = 1; 25 public static final int PARAM_TYPE_NON_EAP_INNER_AUTH_TYPE = 2; 26 public static final int PARAM_TYPE_INNER_AUTH_EAP_METHOD_TYPE = 3; 27 public static final int PARAM_TYPE_EXPANDED_INNER_EAP_METHOD = 4; 28 public static final int PARAM_TYPE_CREDENTIAL_TYPE = 5; 29 public static final int PARAM_TYPE_TUNNELED_EAP_METHOD_CREDENTIAL_TYPE = 6; 30 public static final int PARAM_TYPE_VENDOR_SPECIFIC = 221; 31 32 private final int mAuthTypeID; 33 AuthParam(int authTypeID)34 protected AuthParam(int authTypeID) { 35 mAuthTypeID = authTypeID; 36 } 37 getAuthTypeID()38 public int getAuthTypeID() { 39 return mAuthTypeID; 40 } 41 } 42