*/
protected class SetPropertyRuleFactory extends AbstractObjectCreationFactory {
public Object createObject(Attributes attributes) {
String name = attributes.getValue("name");
String value = attributes.getValue("value");
return new SetPropertyRule( name, value);
}