blob: 7b02c585042e644403d0a777f4eb162346ec59ae [file] [log] [blame]
/**
*
* Copyright 2005-2006 The Apache Software Foundation or its licensors, as applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xbean.snmp;
/**
* Specifies a binding between a JMX notification and an SNMP message.
*
* @version $Rev$ $Date$
*/
public class SnmpBinding
{
private String oid;
private String payload;
private String type;
/**
* The Type of Notification that this VarBinding applies to.
*/
public String getType()
{
return type;
}
public void setType(String type)
{
this.type = type;
}
public String getOid()
{
return oid;
}
public void setOid(String oid)
{
this.oid = oid;
}
public String getPayload()
{
return payload;
}
public void setPayload(String payload)
{
this.payload = payload;
}
}