1 package net.sf.snmpadaptor4j;
2
3 import java.util.List;
4 import net.sf.snmpadaptor4j.api.SnmpDaemonConfiguration;
5
6 /**
7 * Objects containing all configuration settings of snmpAdaptor4j.
8 * @author <a href="http://fr.linkedin.com/in/jpminetti/">Jean-Philippe MINETTI</a>
9 */
10 public interface SnmpConfiguration
11 extends SnmpDaemonConfiguration {
12
13 /**
14 * Returns the parameter list to connect to each manager where to send all notifications (SNMP traps).
15 * @return Parameter list to connect to each manager.
16 */
17 List<SnmpManagerConfiguration> getManagerList ();
18
19 }