blob: bf8145b0501596557735bdb5d45aea354812d11f [file] [log] [blame]
HIGUCHI Yuta7c1583c2015-12-03 23:08:54 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
HIGUCHI Yuta7c1583c2015-12-03 23:08:54 -08003 *
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 */
16package org.onosproject.incubator.rpc.grpc;
17
18import org.onosproject.net.link.LinkProvider;
19import org.onosproject.net.provider.AbstractProvider;
20import org.onosproject.net.provider.ProviderId;
21
Yuta HIGUCHI9efba1e2016-07-09 11:07:13 -070022import com.google.common.annotations.Beta;
HIGUCHI Yuta7c1583c2015-12-03 23:08:54 -080023import com.google.common.base.MoreObjects;
24
25/**
26 * Stub LinkProvider to be registered on Server-side.
27 */
28@Beta
29final class StubLinkProvider extends AbstractProvider implements LinkProvider {
30 protected StubLinkProvider(String scheme) {
31 super(new ProviderId(scheme, GrpcRemoteServiceServer.RPC_PROVIDER_NAME));
32 }
33
34 @Override
35 public String toString() {
36 return MoreObjects.toStringHelper(this)
37 .add("id", id())
38 .toString();
39 }
40}