blob: 6113dd40407477c215d6efaf8f6312bf0cb98987 [file] [log] [blame]
Charles Chanff79dd92018-06-01 16:33:48 -07001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16package org.onosproject.net.host;
17
18import org.onosproject.net.ConnectPoint;
19import org.onosproject.net.Host;
20
21/**
22 * Service for interacting with the host probing entities.
23 */
24public interface HostProbingService {
25 /**
26 * Probes given host on given location.
27 *
28 * @param host the host to be probed
29 * @param connectPoint the location of host to be probed
30 * @param probeMode probe mode
31 */
32 void probeHost(Host host, ConnectPoint connectPoint, ProbeMode probeMode);
33}