Searched refs:wsdlModel (Results 1 - 15 of 15) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/parser/
H A DWSDLParserExtensionContextImpl.java41 private final EditableWSDLModel wsdlModel; field in class:WSDLParserExtensionContextImpl
50 this.wsdlModel = model;
61 return wsdlModel;
H A DRuntimeWSDLParser.java248 WSDLModel wsdlModel = wsdlParser.parseUsingMex(wsdlLoc, resolver, isClientSide, container, serviceClass, policyResolver,extensions);
249 if(wsdlModel == null){
252 return wsdlModel;
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DClientTubeAssemblerContext.java67 private final @Nullable WSDLPort wsdlModel; field in class:ClientTubeAssemblerContext
83 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding) { argument
84 this(address, wsdlModel, rootOwner, binding, Container.NONE);
92 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
96 this(address, wsdlModel, rootOwner, binding, container, ((BindingImpl)binding).createCodec() );
104 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
107 this(address, wsdlModel, rootOwner, binding, container, codec, null, null);
115 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
118 this(address, wsdlModel, rootOwner, null/* no info on which port it is, so pass null*/, binding, container, codec, seiModel, sei);
126 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
135 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @Nullable WSService rootOwner, @Nullable WSBindingProvider bindingProvider, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel, Class sei) argument
[all...]
H A DServerTubeAssemblerContext.java61 private final WSDLPort wsdlModel; field in class:ServerTubeAssemblerContext
69 @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint,
72 this.wsdlModel = wsdlModel;
98 return wsdlModel;
152 HandlerTube cousin = new ServerLogicalHandlerTube(binding, seiModel, wsdlModel, next);
172 ServerPipeAssemblerContext ctxt = new ServerPipeAssemblerContext(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
184 ServerPipeAssemblerContext ctxt = new ServerPipeAssemblerContext(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
201 if (binding instanceof SOAPBinding && binding.isFeatureEnabled(SchemaValidationFeature.class) && wsdlModel!=null)
202 return new ServerSchemaValidationTube(endpoint, binding, seiModel, wsdlModel, nex
68 ServerTubeAssemblerContext(@ullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) argument
[all...]
H A DClientPipeAssemblerContext.java48 public ClientPipeAssemblerContext(@NotNull EndpointAddress address, @NotNull WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding) { argument
49 this(address, wsdlModel, rootOwner, binding, Container.NONE);
52 public ClientPipeAssemblerContext(@NotNull EndpointAddress address, @NotNull WSDLPort wsdlModel, argument
55 super(address, wsdlModel, rootOwner, binding, container);
H A DServerPipeAssemblerContext.java47 public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) { argument
48 super(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/handler/
H A DMessageHandlerContextImpl.java45 private @Nullable WSDLPort wsdlModel; field in class:MessageHandlerContextImpl
47 public MessageHandlerContextImpl(@Nullable SEIModel seiModel, WSBinding binding, @Nullable WSDLPort wsdlModel, Packet packet, Set<String> roles) { argument
51 this.wsdlModel = wsdlModel;
75 return wsdlModel;
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/
H A DOperationDispatcher.java57 public OperationDispatcher(@NotNull WSDLPort wsdlModel, @NotNull WSBinding binding, @Nullable SEIModel seiModel) { argument
61 opFinders.add(new ActionBasedOperationFinder(wsdlModel, binding, seiModel));
63 opFinders.add(new PayloadQNameBasedOperationFinder(wsdlModel, binding, seiModel));
64 opFinders.add(new SOAPActionBasedOperationFinder(wsdlModel, binding, seiModel));
H A DWSDLOperationFinder.java50 protected final WSDLPort wsdlModel; field in class:WSDLOperationFinder
54 public WSDLOperationFinder(@NotNull WSDLPort wsdlModel, @NotNull WSBinding binding, @Nullable SEIModel seiModel) { argument
55 this.wsdlModel = wsdlModel;
H A DSOAPActionBasedOperationFinder.java55 public SOAPActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
56 super(wsdlModel,binding,seiModel);
81 for(WSDLBoundOperation wsdlOp: wsdlModel.getBinding().getBindingOperations()) {
H A DPayloadQNameBasedOperationFinder.java70 public PayloadQNameBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
71 super(wsdlModel,binding,seiModel);
106 for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) {
H A DActionBasedOperationFinder.java71 public ActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
72 super(wsdlModel, binding, seiModel);
104 for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) {
/openjdk9/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DPlugin.java117 * @param wsdlModel This object allows access to the WSDL model used for
134 Model wsdlModel, WsimportOptions options, ErrorReceiver errorReceiver) throws SAXException;
133 run( Model wsdlModel, WsimportOptions options, ErrorReceiver errorReceiver) argument
H A DWsimportTool.java190 Model wsdlModel = buildWsdlModel(listener, receiver);
191 if (wsdlModel == null)
194 if (!generateCode(listener, receiver, wsdlModel, true))
429 Model wsdlModel = wsdlModeler.buildModel();
430 if (wsdlModel == null) {
440 return wsdlModel;
444 Model wsdlModel, boolean generateService)
451 CustomExceptionGenerator.generate(wsdlModel, options, receiver);
452 SeiGenerator.generate(wsdlModel, options, receiver, genExtn);
458 ServiceGenerator.generate(wsdlModel, option
443 generateCode(Listener listener, Receiver receiver, Model wsdlModel, boolean generateService) argument
[all...]
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java950 EditableWSDLModel wsdlModel = context.getWSDLModel();
957 wsdlModel.setPolicyMap(effectiveMap);
963 PolicyUtil.configureModel(wsdlModel,effectiveMap);

Completed in 119 milliseconds