Map hints) throws IOException, OperationNotSupportedException {
if (!canEncode(element, value, hints)) {
return;
}
DeleteAction a = (DeleteAction) value;
AttributesImpl attributes = new AttributesImpl();
attributes.addAttribute(WFSSchema.NAMESPACE.toString(),
attrs[1].getName(), null, "string", a.getTypeName());
output.startElement(element.getNamespace(), element.getName(),
attributes);
elems[0].getType().encode(elems[0], a.getFilter(), output, hints);
output.endElement(element.getNamespace(), element.getName());
}