com.sun.xml.ws.wsdl.parser.W3CAddressingMetadataWSDLParserExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rt Show documentation
Show all versions of rt Show documentation
JAX-WS Reference Implementation Runtime
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.wsdl.parser;
import com.sun.xml.ws.api.model.wsdl.editable.*;
import javax.xml.stream.XMLStreamReader;
import javax.xml.namespace.QName;
/**
* W3C WS-Addressing Runtime WSDL parser extension that parses
* WS-Addressing Metadata wsdl extensibility elements
* This mainly reads wsam:Action element on input/output/fault messages in wsdl.
*
* @author Rama Pulavarthi
*/
public class W3CAddressingMetadataWSDLParserExtension extends W3CAddressingWSDLParserExtension {
String METADATA_WSDL_EXTN_NS = "http://www.w3.org/2007/05/addressing/metadata";
QName METADATA_WSDL_ACTION_TAG = new QName(METADATA_WSDL_EXTN_NS, "Action", "wsam");
/**
* Default constructor.
*/
public W3CAddressingMetadataWSDLParserExtension() {}
@Override
public boolean bindingElements(EditableWSDLBoundPortType binding, XMLStreamReader reader) {
return false;
}
@Override
public boolean portElements(EditableWSDLPort port, XMLStreamReader reader) {
return false;
}
@Override
public boolean bindingOperationElements(EditableWSDLBoundOperation operation, XMLStreamReader reader) {
return false;
}
@Override
protected void patchAnonymousDefault(EditableWSDLBoundPortType binding) {
}
@Override
protected String getNamespaceURI() {
return METADATA_WSDL_EXTN_NS;
}
@Override
protected QName getWsdlActionTag() {
return METADATA_WSDL_ACTION_TAG;
}
}