blob: 037132f6768cba327f770fdb4c79e296d0d6218e [file] [log] [blame]
Andrea Campanellac2d754b2016-03-29 17:51:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Andrea Campanellac2d754b2016-03-29 17:51:07 -07003 *
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 */
16
17package org.onosproject.snmp;
18
19import org.onosproject.net.DeviceId;
20
21/**
22 * Abstraction a default Snmp Device.
23 */
24public interface SnmpDevice {
25
26 /**
27 * Returns host IP and host Port, used by this particular SNMP Device.
28 *
29 * @return Device Information.
30 */
31 String deviceInfo();
32
33 /**
34 * Terminates the device connection.
35 */
36 void disconnect();
37
38 /**
39 * Retrieves the device state.
40 *
41 * @return true if connected
42 */
43 boolean isReachable();
44
45 /**
46 * Returns the IP used connect ssh on the device.
47 *
48 * @return SNMP Device IP
49 */
50 String getSnmpHost();
51
52 /**
53 * Returns the SSH Port used connect the device.
54 *
55 * @return SSH Port number
56 */
57 int getSnmpPort();
58
59 /**
60 * Retrieves the username of the device.
61 *
62 * @return username
63 */
64 String getUsername();
65
66 /**
67 * Retrieves the community (password) of the device.
68 *
69 * @return password
70 */
71 String getCommunity();
72
73 /**
74 * Return the SNMP device deviceID.
75 *
76 * @return DeviceId
77 */
78 DeviceId deviceId();
79}