blob: 4a3ba905e3eac8f4bff097cc5a30489d2c4c8c22 [file] [log] [blame]
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +00001/*
2 * Copyright (C) 2021 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
17package com.android.server;
18
19import android.content.Context;
Lorenzo Colitti84094032022-02-10 16:41:05 +090020import android.os.Binder;
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +000021
22/**
23 * Fake NsdService class for sc-mainline-prod,
24 * to allow building the T service-connectivity before sources
25 * are moved to the branch
26 */
Lorenzo Colitti84094032022-02-10 16:41:05 +090027public final class NsdService extends Binder {
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +000028 /** Create instance */
29 public static NsdService create(Context ctx) throws InterruptedException {
30 throw new RuntimeException("This is a stub class");
31 }
Remi NGUYEN VAN22ea8772021-12-16 15:17:28 +000032}