}
}
private void internalSerializeLocal(XMLStreamWriter writer2)
throws XMLStreamException {
MTOMXMLStreamWriter writer = (MTOMXMLStreamWriter) writer2;
if (!this.isBinary) {
writeOutput(writer);
} else {
if (writer.isOptimized()) {
if (contentID == null) {
contentID = writer.getNextContentId();
}
// send binary as MTOM optimised
this.attribute = new AttrImpl(this.ownerNode, "href",
new NamespaceImpl("", ""),
"cid:" + getContentID(),
this.factory);
this.serializeStartpart(writer);
writer.writeOptimized(this);
writer.writeEndElement();
} else {
writer.writeCharacters(this.getText());
}
}
}