blob: 7e48c517f3a454d3da821ec3cd5398eceae96628 [file] [log] [blame]
senthil172a12c2021-10-05 09:59:32 +05301/*
2 * Copyright 2021-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 */
16
17package org.onosproject.snmp;
18
19
20/**
21 * Abstraction a Snmpv3 Device.
22 */
23public interface Snmpv3Device extends SnmpDevice {
24
25 /**
26 * Retrieves the security name of SNMPv3 device.
27 *
28 * @return security name
29 */
30 String getSecurityName();
31
32 /**
33 * Retrieves the security level of SNMPv3 device.
34 *
35 * @return security level
36 */
37 String getSecurityLevel();
38
39 /**
40 * Retrieves the authentication protocol of SNMPv3 device.
41 *
42 * @return authentication protocol
43 */
44 String getAuthProtocol();
45
46 /**
47 * Retrieves the authentication password of SNMPv3 device.
48 *
49 * @return authentication password
50 */
51 String getAuthPassword();
52
53 /**
54 * Retrieves the privacy protocol of SNMPv3 device.
55 *
56 * @return privacy protocol
57 */
58 String getPrivProtocol();
59
60 /**
61 * Retrieves the privacy password of SNMPv3 device.
62 *
63 * @return privacy password
64 */
65 String getPrivPassword();
66
67 /**
68 * Retrieves the context name of SNMPv3 device.
69 *
70 * @return context name
71 */
72 String getContextName();
73
74}