140141142143144145146
throws MappingFailedException { String s = (String)value; return new SnmpVarBind(new SnmpObjectId(oid), new SnmpOctetString(s.getBytes())); }
479480481482483484485486487488489
ssy = new SnmpUInt32(uin); } else if (val instanceof String) { String in = (String) val; ssy = new SnmpOctetString(in.getBytes()); } else if (val instanceof Integer) { Integer in = (Integer) val; ssy = new SnmpInt32(in);