blob: 968e328edda5642d497649a7bf6c3f95adf094d9 [file] [log] [blame]
/*
* 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.soap.impl.dom;
import org.apache.axiom.om.OMNode;
import org.apache.axiom.soap.SOAP11Version;
import org.apache.axiom.soap.impl.intf.AxiomSOAPEnvelope;
import org.w3c.dom.DOMException;
import org.w3c.dom.Node;
public abstract class SOAPEnvelopeImpl extends SOAPElement implements AxiomSOAPEnvelope {
public Node insertBefore(Node newChild, Node refChild) throws DOMException {
// Check that the child to be added is valid in the context of a SOAP envelope.
// Note that this also covers the appendChild case, since that method
// calls insertBefore with refChild == null.
// SOAP 1.1 allows for arbitrary elements after SOAPBody so do NOT check for
// allowed node types when appending to SOAP 1.1 envelope.
if (!(getVersion() instanceof SOAP11Version && refChild == null)) {
checkChild((OMNode)newChild);
}
return super.insertBefore(newChild, refChild);
}
}