Java Code Examples for com.sun.xml.internal.ws.api.addressing.AddressingVersion#isEnabled()
The following examples show how to use
com.sun.xml.internal.ws.api.addressing.AddressingVersion#isEnabled() .
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: ServerTubeAssemblerContext.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 2
Source File: ClientTubeAssemblerContext.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 3
Source File: ServerTubeAssemblerContext.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 4
Source File: ClientTubeAssemblerContext.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 5
Source File: ServerTubeAssemblerContext.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 6
Source File: ClientTubeAssemblerContext.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 7
Source File: ServerTubeAssemblerContext.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 8
Source File: ClientTubeAssemblerContext.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 9
Source File: ServerTubeAssemblerContext.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 10
Source File: ClientTubeAssemblerContext.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 11
Source File: ServerTubeAssemblerContext.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 12
Source File: ClientTubeAssemblerContext.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 13
Source File: ServerTubeAssemblerContext.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 14
Source File: ClientTubeAssemblerContext.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }
Example 15
Source File: ServerTubeAssemblerContext.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Creates WS-Addressing pipe */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding)) { if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaServerTube(endpoint, wsdlModel, binding, next); } else { return new W3CWsaServerTube(endpoint, wsdlModel, binding, next); } } else return next; }
Example 16
Source File: ClientTubeAssemblerContext.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * Creates a {@link Tube} that invokes protocol and logical handlers. */ public Tube createWsaTube(Tube next) { if (binding instanceof SOAPBinding && AddressingVersion.isEnabled(binding) && wsdlModel!=null) if(AddressingVersion.fromBinding(binding) == AddressingVersion.MEMBER) { return new MemberSubmissionWsaClientTube(wsdlModel, binding, next); } else { return new W3CWsaClientTube(wsdlModel, binding, next); } else return next; }