KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > jmx > adaptor > snmp > system > MIB2SystemGroupServiceMBean


1 /*
2  * JBoss, Home of Professional Open Source
3  * Copyright 2005, JBoss Inc., and individual contributors as indicated
4  * by the @authors tag. See the copyright.txt in the distribution for a
5  * full listing of individual contributors.
6  *
7  * This is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation; either version 2.1 of
10  * the License, or (at your option) any later version.
11  *
12  * This software is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this software; if not, write to the Free
19  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21  */

22 package org.jboss.jmx.adaptor.snmp.system;
23
24 import javax.management.ObjectName JavaDoc;
25
26 import org.jboss.mx.util.ObjectNameFactory;
27 import org.jboss.system.ServiceMBean;
28 import org.opennms.protocols.snmp.SnmpObjectId;
29
30 /**
31  * MIB2SystemGroupService MBean interface
32  *
33  * @author <a HREF="mailto:hwr@pilhuhn.de">Heiko W. Rupp</a>
34  * @author <a HREF="mailto:dimitris@jboss.org">Dimitris Andreadis</a>
35  * @version $Revision: 44604 $
36  */

37 public interface MIB2SystemGroupServiceMBean extends ServiceMBean
38 {
39    /** Default ObjectName */
40    ObjectName JavaDoc OBJECT_NAME = ObjectNameFactory.create("jboss.jmx:name=SnmpAgent,service=MIB2SystemGroup");
41    
42    // Attributes ----------------------------------------------------
43

44    /** The snmp agent */
45    void setSnmpAgent(ObjectName JavaDoc agent);
46    ObjectName JavaDoc getSnmpAgent();
47    
48    /** The description of the system (system.1) */
49    void setSysDescr(String JavaDoc sysDescr);
50    String JavaDoc getSysDescr();
51
52    /** The oid of the system (system.2) -- not yet supported */
53    SnmpObjectId getSysObjectId();
54
55    /** The uptime of the system (system.3) */
56    long getSysUpTime();
57    
58    /** The system contact person (system.4) */
59    void setSysContact(String JavaDoc sysContact);
60    String JavaDoc getSysContact();
61
62    /** The (node)-name of the system (system.5) */
63    void setSysName(String JavaDoc sysName);
64    String JavaDoc getSysName();
65
66     /** The location of the system (system.6) */
67    void setSysLocation(String JavaDoc sysLocation);
68     String JavaDoc getSysLocation();
69
70     /** The services the system provides (system.7) */
71     int getSysServices();
72
73 }
Popular Tags