package org.jboss.jmx.adaptor.snmp.config.notification;
public class Mapping
{
private String notificationType;
private int generic;
private int specific;
private String enterprise;
private VarBindList varBindList;
public Mapping()
{
}
public String getEnterprise()
{
return enterprise;
}
public int getGeneric()
{
return generic;
}
public String getNotificationType()
{
return notificationType;
}
public int getSpecific()
{
return specific;
}
public VarBindList getVarBindList()
{
return varBindList;
}
public void setEnterprise(String enterprise)
{
this.enterprise = enterprise;
}
public void setGeneric(int generic)
{
this.generic = generic;
}
public void setNotificationType(String notificationType)
{
this.notificationType = notificationType;
}
public void setSpecific(int specific)
{
this.specific = specific;
}
public void setVarBindList(VarBindList varBindList)
{
this.varBindList = varBindList;
}
public String toString()
{
StringBuffer sbuf = new StringBuffer(256);
sbuf.append('[')
.append("notificationType=").append(notificationType)
.append(", generic=").append(generic)
.append(", specific=").append(specific)
.append(", enterprise=").append(enterprise)
.append(", varBindList=").append(varBindList)
.append(']');
return sbuf.toString();
}
}