blob: 440841f201eee8a283599ed67c3105c769bfa797 [file] [log] [blame]
Madan Jampanic27b6b22016-02-05 11:36:31 -08001/*
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.iptopology.api;
17
18import org.onosproject.net.DeviceId;
19import org.onosproject.net.Element;
20
21/**
22 * Abstraction of Ip Device.
23 */
24public interface IpDevice extends Element {
25 /**
26 ** Enum type to store Device Type.
27 */
28 enum Type {
29 /**
30 * Signifies that the device is pseudo device.
31 */
32 PSEUDO,
33
34 /**
35 * Signifies that the device is non-pseudo device.
36 */
37 NONPSEUDO;
38 }
39
40 /**
41 * Obtains device id.
42 *
43 * @return device id
44 */
45 @Override
46 DeviceId id();
47
48 /**
49 * Obtains device type.
50 *
51 * @return device type
52 */
53 Type type();
54
55 /**
56 * Obtains Device identifier details.
57 *
58 * @return identifier of the device
59 */
60 IpDeviceIdentifier deviceIdentifier();
61
62 /**
63 * Obtains the traffic engineering parameters of the device.
64 *
65 * @return traffic engineering parameters of the device
66 */
67 DeviceTed deviceTed();
Satish Kf6d87cb2015-11-30 19:59:22 +053068}