Java Code Examples for com.sun.xml.internal.ws.spi.db.BindingContext#createFragmentBridge()
The following examples show how to use
com.sun.xml.internal.ws.spi.db.BindingContext#createFragmentBridge() .
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: JAXBHeader.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 2
Source File: JAXBHeader.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 3
Source File: JAXBMessage.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 4
Source File: JAXBHeader.java From hottub with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 5
Source File: JAXBMessage.java From hottub with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 6
Source File: JAXBMessage.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 7
Source File: JAXBHeader.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 8
Source File: JAXBMessage.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 9
Source File: JAXBMessage.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 10
Source File: JAXBHeader.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 11
Source File: JAXBHeader.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 12
Source File: JAXBMessage.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 13
Source File: JAXBHeader.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 14
Source File: JAXBMessage.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
private JAXBMessage( BindingContext context, Object jaxbObject, SOAPVersion soapVer, MessageHeaders headers, AttachmentSet attachments ) { super(soapVer); // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; this.headers = headers; this.attachmentSet = attachments; }
Example 15
Source File: JAXBHeader.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public JAXBHeader(BindingContext context, Object jaxbObject) { this.jaxbObject = jaxbObject; // this.bridge = new MarshallerBridge(context); this.bridge = context.createFragmentBridge(); if (jaxbObject instanceof JAXBElement) { JAXBElement e = (JAXBElement) jaxbObject; this.nsUri = e.getName().getNamespaceURI(); this.localName = e.getName().getLocalPart(); } }
Example 16
Source File: JAXBDispatchMessage.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public JAXBDispatchMessage(BindingContext context, Object jaxbObject, SOAPVersion soapVersion) { super(soapVersion); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; }
Example 17
Source File: JAXBDispatchMessage.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
public JAXBDispatchMessage(BindingContext context, Object jaxbObject, SOAPVersion soapVersion) { super(soapVersion); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; }
Example 18
Source File: JAXBDispatchMessage.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public JAXBDispatchMessage(BindingContext context, Object jaxbObject, SOAPVersion soapVersion) { super(soapVersion); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; }
Example 19
Source File: JAXBDispatchMessage.java From hottub with GNU General Public License v2.0 | 4 votes |
public JAXBDispatchMessage(BindingContext context, Object jaxbObject, SOAPVersion soapVersion) { super(soapVersion); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; }
Example 20
Source File: JAXBDispatchMessage.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public JAXBDispatchMessage(BindingContext context, Object jaxbObject, SOAPVersion soapVersion) { super(soapVersion); this.bridge = context.createFragmentBridge(); this.rawContext = null; this.jaxbObject = jaxbObject; }