blob: 4be3a357daa201ed9d868270e275634c40d1c3fe [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.
21 */
22public interface SnmpDeviceDescriptionProvider {
23
24 /**
25 * Generated an updated device description.
26 *
27 * @param session SNMP session
28 * @param description old device description
29 * @return new updated description
30 */
31 DeviceDescription populateDescription(ISnmpSession session, DeviceDescription description);
32
33}