//Process for each varibind in the request
for (int i = 0; i < pduLength ; i++ )
{
SnmpVarBind vb = pdu.getVarBindAt(i);
SnmpObjectId oid = vb.getName();
if (getNext)
{
log.debug(
"Should call getNextOid() to find out what is the next valid OID " +
"instance in the supported MIB tree. Assign that OID to the VB List " +
"and then proceed same as that of get request" );
}
vblist[i] = new SnmpVarBind(oid);
log.debug("oid=" + oid.toString());
log.debug("Should call the respective interface to retrieve current value for this OID" );
SnmpSyntax result = null;