blob: ef6678a2ce1c26eea3a256f0c7daf3fcb73b042d [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.alarm.impl;
15
16import com.btisystems.pronx.ems.core.snmp.ISnmpSession;
17import java.util.Collection;
18import org.onosproject.incubator.net.faultmanagement.alarm.Alarm;
19import org.onosproject.net.DeviceId;
20
21public interface SnmpDeviceAlarmProvider {
22 /**
23 * Implemented by device specific implementations which query the current
24 * alarms from a device.
25 * @param snmpSession SNMP Session
26 * @param deviceId device identifier
27 * @return device alarms
28 */
29 Collection<Alarm> getAlarms(ISnmpSession snmpSession, DeviceId deviceId);
30}