blob: 92a1feb7f27e9cf9cef095562f89f6c34f0eaa88 [file] [log] [blame]
Brian O'Connor7cbbbb72016-04-09 02:13:23 -07001/*
2 * Copyright 2015-present 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 */
Ayaka Koshibe12c8c082015-12-08 12:48:46 -080016package org.onosproject.provider.lldp.impl;
17
18import org.onosproject.net.DeviceId;
19import org.onosproject.net.config.basics.BasicFeatureConfig;
20
21/**
22 * A feature to send and receive probes carrying a cluster-unique fingerprint.
23 * Note that, as it leverages LinkDiscovery, disabling linkDiscovery will disable
24 * this function.
25 */
26public class FingerprintProbeFromDevice extends BasicFeatureConfig<DeviceId> {
27
28 protected FingerprintProbeFromDevice() {
29 // default:disabled
30 super(false);
31 }
32
33}