blob: 12cd23b98ac38521a6e692c965dc891676941e59 [file] [log] [blame]
Sean Condon0e89bda2017-03-21 14:23:19 +00001/*
2 * Copyright 2017-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.incubator.net.l2monitoring.cfm;
17
18/**
19 * Object for representing Sender ID TLV.
20 */
21public interface SenderIdTlv {
22
23 /**
24 * Type of Sender ID TLV.
25 */
26 public enum SenderIdTlvType {
27 SI_NO_SENDER_ID_TLV,
28 SI_CHASSIS_COMPONENT,
29 SI_INTERFACE_ALIAS,
30 SI_PORT_COMPONENT,
31 SI_MAC_ADDRESS,
32 SI_NETWORK_ADDRESS,
33 SI_INTERFACE_NAME,
34 SI_LOCALLY_ASSIGNED;
35 }
36}