All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.axiom.om.OMSerializable Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.axiom.om;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

import org.apache.axiom.ext.stax.datahandler.DataHandlerWriter;

/**
 * Information item that can be serialized (written to an XML stream writer) and
 * deserialized (retrieved from an XML parser) as a unit.
 * This is the common super-interface for {@link OMDocument} and {@link OMNode}.
 * Note that {@link OMAttribute} and {@link OMNamespace} are information items that don't
 * match the definition of this interface because they can only be read from the parser
 * as part of a larger unit, namely an element.
 * 

* In accordance with the definition given above, this interface declares two sets of methods: *

    *
  • Methods allowing to control whether the information item has been completely built, * i.e. whether all events corresponding to the information item have been retrieved * from the parser.
  • *
  • Methods to write the StAX events corresponding to the information item to an * {@link XMLStreamWriter}.
  • *
*/ public interface OMSerializable extends OMInformationItem { /** * Indicates whether parser has parsed this information item completely or not. If some info are * not available in the item, one has to check this attribute to make sure that, this item has been * parsed completely or not. * * @return Returns boolean. */ boolean isComplete(); /** Builds itself. */ void build(); /** * If a builder and parser is associated with the node, it is closed. * @param build if true, the object is built first before closing the builder/parser */ void close(boolean build); /** * Serializes the information item with caching. This method has the same effect as * {@link #serialize(XMLStreamWriter, boolean)} with cache set to * true. * * @param xmlWriter * @throws XMLStreamException */ void serialize(XMLStreamWriter xmlWriter) throws XMLStreamException; /** * Serializes the information item without caching. This method has the same effect as * {@link #serialize(XMLStreamWriter, boolean)} with cache set to * false. * * @param xmlWriter * @throws XMLStreamException */ void serializeAndConsume(XMLStreamWriter xmlWriter) throws XMLStreamException; /** * Serializes the information item to the given {@link XMLStreamWriter}. *

* The implementation of this method must satisfy the following requirements: *

    *
  • If the writer exposes the {@link DataHandlerWriter} extension, then base64 binary data * MUST be written using one of the methods defined by that extension. This will occur if the * information item is an {@link OMText} node for which {@link OMText#isBinary()} returns * true or if it is an {@link OMContainer} that has such an {@link OMText} node as * descendant. If the writer doesn't expose the {@link DataHandlerWriter} extension, then the * implementation MUST use {@link XMLStreamWriter#writeCharacters(String)} or * {@link XMLStreamWriter#writeCharacters(char[], int, int)} to write the base64 encoded data to * the stream. *
  • The implementation MUST ensure that the produced XML is well formed with respect to * namespaces, i.e. it MUST generate the required namespace declarations using * {@link XMLStreamWriter#writeNamespace(String, String)} and * {@link XMLStreamWriter#writeDefaultNamespace(String)}. This requirement is always applicable, * even if the method is used to serialize a subtree or if the object model is not well formed * with respect to namespaces. This means that the implementation is expected to implement * namespace repairing and that the implementation MUST NOT assume that the * {@link XMLStreamWriter} supplied by the caller performs any kind of namespace repairing. *
  • The implementation MUST take into account the pre-existing namespace context, so that the * caller can use this method to serialize the information item as part of a larger document. * The implementation uses {@link XMLStreamWriter#getPrefix(String)} and/or * {@link XMLStreamWriter#getNamespaceContext()} to query the pre-existing namespace context. *
*

* On the other hand, the caller of this method must ensure that the following requirements are * satisfied: *

    *
  • The namespace context information provided by {@link XMLStreamWriter#getPrefix(String)} * and {@link XMLStreamWriter#getNamespaceContext()} MUST accurately reflect the actual * namespace context at the location in the output document where the information item is * serialized. In practice this requirement means that if the caller writes content to the * {@link XMLStreamWriter} before calling this method, then it must use * {@link XMLStreamWriter#setPrefix(String, String)} and * {@link XMLStreamWriter#setDefaultNamespace(String)} to update the namespace context. Note * that this requirement may be relaxed if the caller implements some form of namespace * repairing. *
* * @param xmlWriter * @param cache * indicates if caching should be enabled * @throws XMLStreamException */ void serialize(XMLStreamWriter xmlWriter, boolean cache) throws XMLStreamException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy