1 /*
2  * Copyright (C) 2019 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.internal.net.ipsec.ike;
18 
19 import android.content.Context;
20 import android.net.eap.EapSessionConfig;
21 import android.os.Looper;
22 
23 import com.android.internal.net.eap.EapAuthenticator;
24 import com.android.internal.net.eap.IEapCallback;
25 import com.android.internal.net.ipsec.ike.utils.RandomnessFactory;
26 
27 /** Package private factory for building EapAuthenticator instances. */
28 final class IkeEapAuthenticatorFactory {
29     /**
30      * Builds and returns a new EapAuthenticator
31      *
32      * @param looper Looper for running a message loop
33      * @param cb IEapCallback for callbacks to the client
34      * @param context Context for the EapAuthenticator
35      * @param eapSessionConfig EAP session configuration
36      * @param randomnessFactory the randomness factory
37      */
newEapAuthenticator( Looper looper, IEapCallback cb, Context context, EapSessionConfig eapSessionConfig, RandomnessFactory randomnessFactory)38     public EapAuthenticator newEapAuthenticator(
39             Looper looper,
40             IEapCallback cb,
41             Context context,
42             EapSessionConfig eapSessionConfig,
43             RandomnessFactory randomnessFactory) {
44         return new EapAuthenticator(looper, cb, context, eapSessionConfig, randomnessFactory);
45     }
46 }
47