blob: 42e4ab39d297801569045d9bcf88778a5f371696 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.net.test;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
/**
* Authenticator service for testing SPNEGO (Kerberos) support.
*/
public class DummySpnegoAuthenticatorService extends Service {
private static DummySpnegoAuthenticator sAuthenticator;
@Override
public IBinder onBind(Intent arg0) {
if (sAuthenticator == null) sAuthenticator = new DummySpnegoAuthenticator(this);
return sAuthenticator.getIBinder();
}
}