blob: 4b8fb34ff1196bcf73fd5f2df0c9dae415964ec9 [file] [log] [blame]
kmcpeakeb172d5f2015-12-10 11:30:43 +00001/*
2 * Licensed under the Apache License, Version 2.0 (the "License");
3 * you may not use this file except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 * http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14package org.onosproject.provider.snmp.device.impl;
15
16import com.btisystems.pronx.ems.core.snmp.ISnmpSession;
17import org.onosproject.net.device.DeviceDescription;
18
19/**
20 * Abstraction of an entity which updates a device description with information retrieved via SNMP.
Andrea Campanella3eca4a82016-02-10 17:35:14 -080021 * @deprecated 1.5.0 Falcon, not compliant with ONOS SB and driver architecture.
kmcpeakeb172d5f2015-12-10 11:30:43 +000022 */
Andrea Campanella3eca4a82016-02-10 17:35:14 -080023@Deprecated
kmcpeakeb172d5f2015-12-10 11:30:43 +000024public interface SnmpDeviceDescriptionProvider {
25
26 /**
27 * Generated an updated device description.
Andrea Campanella3eca4a82016-02-10 17:35:14 -080028 * @deprecated 1.5.0 Falcon
kmcpeakeb172d5f2015-12-10 11:30:43 +000029 * @param session SNMP session
30 * @param description old device description
31 * @return new updated description
32 */
Andrea Campanella3eca4a82016-02-10 17:35:14 -080033 @Deprecated
kmcpeakeb172d5f2015-12-10 11:30:43 +000034 DeviceDescription populateDescription(ISnmpSession session, DeviceDescription description);
kmcpeakeb172d5f2015-12-10 11:30:43 +000035}