blob: 66f1266bec47df3e4c8ac11c8f6db4b44f43e67e [file] [log] [blame]
Charles Chan47933752017-11-30 15:37:50 -08001/*
Charles Chanff79dd92018-06-01 16:33:48 -07002 * Copyright 2018-present Open Networking Foundation
Charles Chan47933752017-11-30 15:37:50 -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.net.host;
17
18import org.onosproject.net.ConnectPoint;
19import org.onosproject.net.Host;
20
Charles Chanff79dd92018-06-01 16:33:48 -070021/**
22 * Service for interacting with the host probing entities.
23 *
24 * @deprecated in ONOS 1.12, replaced by {@link HostProbingService}
25 */
26@Deprecated
Charles Chan47933752017-11-30 15:37:50 -080027public interface HostLocationProbingService {
28 /**
Charles Chan47933752017-11-30 15:37:50 -080029 * Probes given host on given location.
30 *
31 * @param host the host to be probed
32 * @param connectPoint the location of host to be probed
33 * @param probeMode probe mode
Charles Chanff79dd92018-06-01 16:33:48 -070034 * @deprecated in ONOS 1.12, replaced by {@link HostProbingService#probeHost(Host, ConnectPoint, ProbeMode)}
Charles Chan47933752017-11-30 15:37:50 -080035 */
Charles Chanff79dd92018-06-01 16:33:48 -070036 @Deprecated
37 void probeHost(Host host, ConnectPoint connectPoint, ProbeMode probeMode);
Charles Chan47933752017-11-30 15:37:50 -080038}