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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DWSDLOperationFinder.java46 protected final WSDLPort wsdlModel; field in class:WSDLOperationFinder
50 public WSDLOperationFinder(@NotNull WSDLPort wsdlModel, @NotNull WSBinding binding, @Nullable SEIModel seiModel) { argument
51 this.wsdlModel = wsdlModel;
H A DOperationDispatcher.java56 public OperationDispatcher(@NotNull WSDLPort wsdlModel, @NotNull WSBinding binding, @Nullable SEIModel seiModel) { argument
60 opFinders.add(new ActionBasedOperationFinder(wsdlModel, binding, seiModel));
62 opFinders.add(new PayloadQNameBasedOperationFinder(wsdlModel, binding, seiModel));
63 opFinders.add(new SOAPActionBasedOperationFinder(wsdlModel, binding, seiModel));
H A DSOAPActionBasedOperationFinder.java54 public SOAPActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
55 super(wsdlModel,binding,seiModel);
80 for(WSDLBoundOperation wsdlOp: wsdlModel.getBinding().getBindingOperations()) {
H A DPayloadQNameBasedOperationFinder.java69 public PayloadQNameBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
70 super(wsdlModel,binding,seiModel);
105 for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) {
H A DActionBasedOperationFinder.java69 public ActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
70 super(wsdlModel, binding, seiModel);
102 for (WSDLBoundOperation wsdlOp : wsdlModel.getBinding().getBindingOperations()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DWSDLParserExtensionContextImpl.java41 private final WSDLModel wsdlModel; field in class:WSDLParserExtensionContextImpl
50 this.wsdlModel = model;
61 return wsdlModel;
H A DRuntimeWSDLParser.java171 WSDLModelImpl wsdlModel = wsdlParser.parseUsingMex(wsdlLoc, resolver, isClientSide, container, policyResolver,extensions);
172 if(wsdlModel == null){
175 return wsdlModel;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DClientTubeAssemblerContext.java67 private final @Nullable WSDLPort wsdlModel; field in class:ClientTubeAssemblerContext
82 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding) { argument
83 this(address, wsdlModel, rootOwner, binding, Container.NONE);
91 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
95 this(address, wsdlModel, rootOwner, binding, container, ((BindingImpl)binding).createCodec() );
103 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
106 this(address, wsdlModel, rootOwner, binding, container, codec, null);
114 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
117 this(address, wsdlModel, rootOwner, null/* no info on which port it is, so pass null*/, binding, container, codec,seiModel);
125 public ClientTubeAssemblerContext(@NotNull EndpointAddress address, @Nullable WSDLPort wsdlModel, argument
134 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @Nullable WSService rootOwner, @Nullable WSBindingProvider bindingProvider, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) 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);
/openjdk7/jaxws/src/share/jaxws_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;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportTool.java178 Model wsdlModel = wsdlModeler.buildModel();
179 if (wsdlModel == null) {
195 CustomExceptionGenerator.generate(wsdlModel, options, receiver);
196 SeiGenerator.generate(wsdlModel, options, receiver, genExtn);
200 ServiceGenerator.generate(wsdlModel, options, receiver);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java941 WSDLModel wsdlModel = context.getWSDLModel();
948 ((WSDLModelImpl) wsdlModel).setPolicyMap(effectiveMap);
954 PolicyUtil.configureModel(wsdlModel,effectiveMap);

Completed in 3588 milliseconds