Java Code Examples for com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds#XSD_TYPE
The following examples show how to use
com.sun.tools.internal.ws.wsdl.document.schema.SchemaKinds#XSD_TYPE .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WSDLModelerBase.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 2
Source File: SOAPEntityReferenceValidator.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 3
Source File: WSDLModelerBase.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 4
Source File: SOAPEntityReferenceValidator.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 5
Source File: WSDLModelerBase.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 6
Source File: SOAPEntityReferenceValidator.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 7
Source File: WSDLModelerBase.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 8
Source File: SOAPEntityReferenceValidator.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 9
Source File: WSDLModelerBase.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 10
Source File: SOAPEntityReferenceValidator.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 11
Source File: WSDLModelerBase.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 12
Source File: SOAPEntityReferenceValidator.java From hottub with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 13
Source File: WSDLModelerBase.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 14
Source File: SOAPEntityReferenceValidator.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }
Example 15
Source File: WSDLModelerBase.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
/** * For Document/Lit the wsdl:part should only have element attribute and * for RPC/Lit or RPC/Encoded the wsdl:part should only have type attribute * inside wsdl:message. */ protected boolean isStyleAndPartMatch( SOAPOperation soapOperation, MessagePart part) { // style attribute on soap:operation takes precedence over the // style attribute on soap:binding if ((soapOperation != null) && (soapOperation.getStyle() != null)) { if ((soapOperation.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (soapOperation.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } else { if ((info.soapBinding.isDocument() && (part.getDescriptorKind() != SchemaKinds.XSD_ELEMENT)) || (info.soapBinding.isRPC() && (part.getDescriptorKind() != SchemaKinds.XSD_TYPE))) { return false; } } return true; }
Example 16
Source File: SOAPEntityReferenceValidator.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public boolean isValid(Kind kind, QName name) { // just let all "xml:" QNames through if (name.getNamespaceURI().equals(Constants.NS_XML)) return true; if (kind == SchemaKinds.XSD_TYPE) { return _validTypes.contains(name); } else if (kind == SchemaKinds.XSD_ELEMENT) { return _validElements.contains(name); } else if (kind == SchemaKinds.XSD_ATTRIBUTE) { return _validAttributes.contains(name); } else { // no luck return false; } }