Searched refs:seiModel (Results 1 - 25 of 25) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DWSDLOperationFinder.java48 protected final SEIModel seiModel; field in class:WSDLOperationFinder
50 public WSDLOperationFinder(@NotNull WSDLPort wsdlModel, @NotNull WSBinding binding, @Nullable SEIModel seiModel) { argument
53 this.seiModel= seiModel;
H A DSOAPActionBasedOperationFinder.java54 public SOAPActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
55 super(wsdlModel,binding,seiModel);
60 if (seiModel != null) {
61 for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) {
71 for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) {
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 DPayloadQNameBasedOperationFinder.java69 public PayloadQNameBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
70 super(wsdlModel,binding,seiModel);
71 if (seiModel != null) {
73 for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) {
94 for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) {
H A DActionBasedOperationFinder.java69 public ActionBasedOperationFinder(WSDLPort wsdlModel, WSBinding binding, @Nullable SEIModel seiModel) { argument
70 super(wsdlModel, binding, seiModel);
77 if (seiModel != null) {
78 for (JavaMethodImpl m : ((AbstractSEIModelImpl) seiModel).getJavaMethods()) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientLogicalHandlerTube.java51 private SEIModel seiModel; field in class:ClientLogicalHandlerTube
56 public ClientLogicalHandlerTube(WSBinding binding, SEIModel seiModel, WSDLPort port, Tube next) { argument
59 this.seiModel = seiModel;
69 public ClientLogicalHandlerTube(WSBinding binding, SEIModel seiModel, Tube next, HandlerTube cousinTube) { argument
72 this.seiModel = seiModel;
82 this.seiModel = that.seiModel;
115 return new LogicalMessageContextImpl(binding, (seiModel!
[all...]
H A DServerLogicalHandlerTube.java56 private SEIModel seiModel; field in class:ServerLogicalHandlerTube
60 public ServerLogicalHandlerTube(WSBinding binding, SEIModel seiModel, WSDLPort port, Tube next) { argument
63 this.seiModel = seiModel;
74 public ServerLogicalHandlerTube(WSBinding binding, SEIModel seiModel, Tube next, HandlerTube cousinTube) { argument
77 this.seiModel = seiModel;
88 this.seiModel = that.seiModel;
127 return new LogicalMessageContextImpl(binding, (seiModel!
[all...]
H A DMessageHandlerContextImpl.java42 private @Nullable SEIModel seiModel; field in class:MessageHandlerContextImpl
47 public MessageHandlerContextImpl(@Nullable SEIModel seiModel, WSBinding binding, @Nullable WSDLPort wsdlModel, Packet packet, Set<String> roles) { argument
49 this.seiModel = seiModel;
71 return seiModel;
H A DClientMessageHandlerTube.java53 private SEIModel seiModel; field in class:ClientMessageHandlerTube
60 public ClientMessageHandlerTube(@Nullable SEIModel seiModel, WSBinding binding, WSDLPort port, Tube next) { argument
62 this.seiModel = seiModel;
71 this.seiModel = that.seiModel;
146 MessageHandlerContextImpl context = new MessageHandlerContextImpl(seiModel, binding, port, packet,roles);
H A DServerMessageHandlerTube.java51 private SEIModel seiModel; field in class:ServerMessageHandlerTube
55 public ServerMessageHandlerTube(SEIModel seiModel, WSBinding binding, Tube next, HandlerTube cousinTube) { argument
57 this.seiModel = seiModel;
67 this.seiModel = that.seiModel;
136 MessageHandlerContextImpl context = new MessageHandlerContextImpl(seiModel, binding, port, packet, roles);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DSEIStub.java62 public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) { argument
63 super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
64 this.seiModel = seiModel;
69 public SEIStub(WSPortInfo portInfo, BindingImpl binding, SOAPSEIModel seiModel, WSEndpointReference epr) { argument
70 super(portInfo, binding, seiModel.getPort().getAddress(),epr);
71 this.seiModel = seiModel;
81 for (JavaMethodImpl m : seiModel
105 public final SOAPSEIModel seiModel; field in class:SEIStub
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerSchemaValidationTube.java63 private final SEIModel seiModel; field in class:ServerSchemaValidationTube
67 SEIModel seiModel, WSDLPort wsdlPort, Tube next) {
69 this.seiModel = seiModel;
120 wsdlPort, seiModel, binding));
145 this.seiModel = that.seiModel;
66 ServerSchemaValidationTube(WSEndpoint endpoint, WSBinding binding, SEIModel seiModel, WSDLPort wsdlPort, Tube next) argument
H A DEndpointFactory.java160 AbstractSEIModelImpl seiModel = null;
190 seiModel = createSEIModel(wsdlPort, implType, serviceName, portName, binding);
194 ((SOAPSEIModel)seiModel).getKnownHeaders());
198 primaryDoc = generateWSDL(binding, seiModel, docList, container, implType);
201 seiModel.freeze(wsdlPort);
208 terminal= new SEIInvokerTube(seiModel,invoker,binding);
221 return new WSEndpointImpl<T>(serviceName, portName, binding,container,seiModel,wsdlPort,implType, serviceDefiniton,terminal, isTransportSynchronous, policyMap);
417 private static SDDocumentImpl generateWSDL(WSBinding binding, AbstractSEIModelImpl seiModel, List<SDDocumentImpl> docs, argument
430 WSDLGenResolver wsdlResolver = new WSDLGenResolver(docs,seiModel.getServiceQName(),seiModel
[all...]
H A DWSEndpointImpl.java86 private final SEIModel seiModel; field in class:WSEndpointImpl
116 Container container, SEIModel seiModel, WSDLPort port,
129 this.seiModel = seiModel;
143 this.operationDispatcher = (port == null) ? null : new OperationDispatcher(port, binding, seiModel);
145 context = new ServerPipeAssemblerContext(seiModel, port, this, terminalTube, isSynchronous);
227 return seiModel;
115 WSEndpointImpl(@otNull QName serviceName, @NotNull QName portName, WSBinding binding, Container container, SEIModel seiModel, WSDLPort port, Class<T> implementationClass, @Nullable ServiceDefinitionImpl serviceDef, InvokerTube terminalTube, boolean isSynchronous, PolicyMap endpointPolicy) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DServerTubeAssemblerContext.java60 private final SEIModel seiModel; field in class:ServerTubeAssemblerContext
68 public ServerTubeAssemblerContext(@Nullable SEIModel seiModel, argument
71 this.seiModel = seiModel;
82 * The created pipeline will use seiModel to get java concepts for the endpoint
88 return seiModel;
152 HandlerTube cousin = new ServerLogicalHandlerTube(binding, seiModel, wsdlModel, next);
159 next = new ServerMessageHandlerTube(seiModel, binding, next, cousin);
172 ServerPipeAssemblerContext ctxt = new ServerPipeAssemblerContext(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
184 ServerPipeAssemblerContext ctxt = new ServerPipeAssemblerContext(seiModel, wsdlMode
[all...]
H A DClientTubeAssemblerContext.java68 private final @Nullable SEIModel seiModel; field in class:ClientTubeAssemblerContext
116 @NotNull Container container, Codec codec, SEIModel seiModel) {
117 this(address, wsdlModel, rootOwner, null/* no info on which port it is, so pass null*/, binding, container, codec,seiModel);
127 @NotNull Container container, Codec codec, SEIModel seiModel) {
128 this(address, wsdlModel, (bindingProvider==null? null: bindingProvider.getPortInfo().getOwner()), bindingProvider, binding, container, codec,seiModel);
136 @NotNull Container container, Codec codec, SEIModel seiModel) {
144 this.seiModel = seiModel;
199 * The created pipeline will use seiModel to get java concepts for the endpoint
205 return seiModel;
114 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSService rootOwner, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) argument
125 ClientTubeAssemblerContext(@otNull EndpointAddress address, @Nullable WSDLPort wsdlModel, @NotNull WSBindingProvider bindingProvider, @NotNull WSBinding binding, @NotNull Container container, Codec codec, SEIModel seiModel) 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 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/addressing/
H A DWsaTubeHelperImpl.java54 public WsaTubeHelperImpl(WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding) { argument
55 super(binding,seiModel,wsdlPort);
H A DWsaTubeHelper.java63 public WsaTubeHelper(WSBinding binding, SEIModel seiModel, WSDLPort wsdlPort) { argument
66 this.seiModel = seiModel;
74 if(seiModel != null) {
93 if (seiModel == null || wsdlPort == null)
115 JavaMethodImpl jm = (JavaMethodImpl) seiModel.getJavaMethodForWsdlOperation(wsdlOp);
243 if (seiModel != null) {
244 JavaMethodImpl jm = (JavaMethodImpl) seiModel.getJavaMethodForWsdlOperation(wsdlOp);
329 protected SEIModel seiModel; field in class:WsaTubeHelper
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DWsaTubeHelperImpl.java55 public WsaTubeHelperImpl(WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding) { argument
56 super(binding,seiModel,wsdlPort);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLGeneratorExtension.java98 private SEIModel seiModel; field in class:PolicyWSDLGeneratorExtension
107 this.seiModel = context.getModel();
127 policySubjects.addAll(policyMapConfigurators[i].update(policyMap, seiModel, binding));
130 PolicyMapUtil.insertPolicies(policyMap, policySubjects, this.seiModel.getServiceQName(), this.seiModel.getPortName());
186 final String serviceName = (null == seiModel) ? null : seiModel.getServiceQName().getLocalPart();
194 final String portName = (null == seiModel) ? null : seiModel.getPortName().getLocalPart();
202 final String portTypeName = (null == seiModel)
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DAddressingVersion.java83 public WsaTubeHelper getWsaHelper(WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding) {
84 return new com.sun.xml.internal.ws.addressing.WsaTubeHelperImpl(wsdlPort, seiModel, binding);
163 public WsaTubeHelper getWsaHelper(WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding) {
164 return new com.sun.xml.internal.ws.addressing.v200408.WsaTubeHelperImpl(wsdlPort, seiModel, binding);
533 public abstract WsaTubeHelper getWsaHelper(WSDLPort wsdlPort, SEIModel seiModel, WSBinding binding); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DMessage.java300 * @param seiModel
313 public final @Nullable JavaMethod getMethod(@NotNull SEIModel seiModel) { argument
323 return seiModel.getJavaMethod(name);
H A DPacket.java727 public Packet createServerResponse(@Nullable Message responseMessage, @Nullable WSDLPort wsdlPort, @Nullable SEIModel seiModel, @NotNull WSBinding binding) { argument
744 populateAddressingHeaders(binding, r, wsdlPort,seiModel);
849 private void populateAddressingHeaders(WSBinding binding, Packet responsePacket, WSDLPort wsdlPort, SEIModel seiModel) { argument
854 WsaTubeHelper wsaHelper = addressingVersion.getWsaHelper(wsdlPort,seiModel, binding);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DStub.java203 SEIModel seiModel = null;
205 seiModel = ((SEIPortInfo)portInfo).model;
217 this, binding, owner.getContainer(),((BindingImpl)binding).createCodec(),seiModel));

Completed in 1385 milliseconds