--- experimental/server/PluginManager/PluginDemo.java 2000/12/01 09:50:35 1.1 +++ experimental/server/PluginManager/PluginDemo.java 2000/12/01 14:31:14 1.2 @@ -16,15 +16,15 @@ class PluginDemo { XMLPacket nearlyEmptyPacket = new XMLPacket(); // Add some stuff to the valid packet (i.e. all essential info) - validPacket.addParam("machine_name", "raptor"); - validPacket.addParam("ip", "129.12.225.53"); - validPacket.addParam("seq_no", "552"); - validPacket.addParam("date", "934999665636"); + validPacket.addParam("packet.attributes.machine_name", "raptor"); + validPacket.addParam("packet.attributes.ip", "129.12.225.53"); + validPacket.addParam("packet.attributes.seq_no", "552"); + validPacket.addParam("packet.attributes.date", "934999665636"); // Add nothing to the empty packet // Add just the machine name to the nearly empty packet. - nearlyEmptyPacket.addParam("machine_name", "craptor"); + nearlyEmptyPacket.addParam("packet.attributes.machine_name", "craptor"); // Run the XMLPackets through the filter pipeline. System.out.println("");