blob: 4ea3b1bd21a255b1c1dbb29619bc452b30460ebe [file] [log] [blame]
Thomas Vachuska05453c92015-09-09 14:40:49 -07001/*
2 * Copyright 2015 Open Networking Laboratory
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.provider.lldp.impl;
17
18import org.onosproject.mastership.MastershipService;
19import org.onosproject.net.link.LinkProviderService;
20import org.onosproject.net.packet.PacketService;
21
22/**
23 * Shared context for use by link discovery.
24 */
25public interface DiscoveryContext {
26
27 /**
28 * Returns the shared mastership service reference.
29 *
30 * @return mastership service
31 */
32 MastershipService mastershipService();
33
34 /**
35 * Returns the shared link provider service reference.
36 *
37 * @return link provider service
38 */
39 LinkProviderService providerService();
40
41 /**
42 * Returns the shared packet service reference.
43 *
44 * @return packet service
45 */
46 PacketService packetService();
47
48 /**
49 * Returns the probe rate in millis.
50 *
51 * @return probe rate
52 */
53 long probeRate();
54
55 /**
56 * Returns the max stale link age in millis.
57 *
58 * @return stale link age
59 */
60 long staleLinkAge();
61
62 /**
63 * Indicates whether to emit BDDP.
64 *
65 * @return true to emit BDDP
66 */
67 boolean useBDDP();
68}