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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DDefinitions.java55 public PortType portType(); method in interface:Definitions
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitor.java45 public void preVisit(PortType portType) throws Exception; argument
46 public void postVisit(PortType portType) throws Exception; argument
H A DWSDLDocumentVisitorBase.java55 public void preVisit(PortType portType) throws Exception { argument
57 public void postVisit(PortType portType) throws Exception { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLBoundPortTypeImpl.java53 private WSDLPortTypeImpl portType; field in class:WSDLBoundPortTypeImpl
105 return portType;
200 portType = owner.getPortType(portTypeName);
201 if(portType == null){
205 portType.freeze();
H A DWSDLModelImpl.java154 * gets the first port in the wsdl which matches the serviceName and portType
156 public WSDLPortImpl getMatchingPort(QName serviceName, QName portType){ argument
157 return getService(serviceName).getMatchingPort(portType);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/parser/
H A DWSDLParserExtension.java183 public boolean portTypeElements(WSDLPortType portType, XMLStreamReader reader) { argument
187 public void portTypeAttributes(WSDLPortType portType, XMLStreamReader reader) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DWSEndpointReference.java225 @Nullable QName portType,
229 this(version, address, service, port, portType, metadata, wsdlAddress, null, referenceParameters, null, null);
243 @Nullable QName portType,
248 this(createBufferFromData(version, address, referenceParameters, service, port, portType, metadata, wsdlAddress, null, extns, attributes),
264 @Nullable QName portType,
271 createBufferFromData(version, address, referenceParameters, service, port, portType, metadata, wsdlAddress,wsdlTargetNamepsace, elements, attributes),
275 private static XMLStreamBuffer createBufferFromData(AddressingVersion version, String address, List<Element> referenceParameters, QName service, QName port, QName portType, argument
285 writePartialEPRInfoset(writer, version, address, referenceParameters, service, port, portType,
304 private static XMLStreamBuffer createBufferFromData(AddressingVersion version, String address, List<Element> referenceParameters, QName service, QName port, QName portType, argument
314 writePartialEPRInfoset(writer, version, address, referenceParameters, service, port, portType,
221 WSEndpointReference(@otNull AddressingVersion version, @NotNull String address, @Nullable QName service, @Nullable QName port, @Nullable QName portType, @Nullable List<Element> metadata, @Nullable String wsdlAddress, @Nullable List<Element> referenceParameters) argument
239 WSEndpointReference(@otNull AddressingVersion version, @NotNull String address, @Nullable QName service, @Nullable QName port, @Nullable QName portType, @Nullable List<Element> metadata, @Nullable String wsdlAddress, @Nullable List<Element> referenceParameters, @Nullable Collection<EPRExtension> extns,@Nullable Map<QName, String> attributes) argument
260 WSEndpointReference(@otNull AddressingVersion version, @NotNull String address, @Nullable QName service, @Nullable QName port, @Nullable QName portType, @Nullable List<Element> metadata, @Nullable String wsdlAddress, @Nullable String wsdlTargetNamepsace, @Nullable List<Element> referenceParameters, @Nullable List<Element> elements, @Nullable Map<QName, String> attributes) argument
337 writePartialEPRInfoset(StreamWriterBufferCreator writer, AddressingVersion version, String address, List<Element> referenceParameters, QName service, QName port, QName portType, List<Element> metadata, String wsdlAddress, String wsdlTargetNamespace, @Nullable Map<QName, String> attributes) argument
387 writeW3CMetaData(StreamWriterBufferCreator writer, QName service, QName port, QName portType, List<Element> metadata, String wsdlAddress, String wsdlTargetNamespace) argument
473 writeMSMetaData(StreamWriterBufferCreator writer, QName service, QName port, QName portType, List<Element> metadata) argument
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_BsdOS_ALSA_Ports.c43 INT32 portType; /* one of PORT_XXX_xx */ member in struct:__anon949
320 static int isPlaybackFunction(INT32 portType) { argument
321 return (portType & PORT_DST_MASK);
420 portControl->portType = portMixer->types[portIndex];
438 portControl->portType = portMixer->types[portIndex];
460 portControl->portType = portMixer->types[portIndex];
475 portControl->portType = portMixer->types[portIndex];
515 if (isPlaybackFunction(portControl->portType)) {
542 if (isPlaybackFunction(portControl->portType)) {
572 if (isPlaybackFunction(portControl->portType)) {
[all...]
H A DPLATFORM_API_LinuxOS_ALSA_Ports.c43 INT32 portType; /* one of PORT_XXX_xx */ member in struct:__anon950
320 static int isPlaybackFunction(INT32 portType) { argument
321 return (portType & PORT_DST_MASK);
420 portControl->portType = portMixer->types[portIndex];
438 portControl->portType = portMixer->types[portIndex];
460 portControl->portType = portMixer->types[portIndex];
475 portControl->portType = portMixer->types[portIndex];
515 if (isPlaybackFunction(portControl->portType)) {
542 if (isPlaybackFunction(portControl->portType)) {
572 if (isPlaybackFunction(portControl->portType)) {
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DDelegatingParserExtension.java91 public boolean portTypeElements(WSDLPortType portType, XMLStreamReader reader) { argument
92 return core.portTypeElements(portType, reader);
95 public void portTypeAttributes(WSDLPortType portType, XMLStreamReader reader) { argument
96 core.portTypeAttributes(portType, reader);
H A DFoolProofParserExtension.java92 public boolean portTypeElements(WSDLPortType portType, XMLStreamReader reader) { argument
93 return post(pre(reader),reader,super.portTypeElements(portType, reader));
H A DWSDLParserExtensionFacade.java155 public boolean portTypeElements(WSDLPortType portType, XMLStreamReader reader) { argument
157 if (e.portTypeElements(portType, reader)) {
165 public void portTypeAttributes(WSDLPortType portType, XMLStreamReader reader) { argument
167 e.portTypeAttributes(portType, reader);
H A DRuntimeWSDLParser.java687 //skip wsdl:portType element for now
691 WSDLPortTypeImpl portType = new WSDLPortTypeImpl(reader,wsdlDoc, new QName(targetNamespace, portTypeName));
692 extensionFacade.portTypeAttributes(portType, reader);
693 wsdlDoc.addPortType(portType);
697 parsePortTypeOperation(reader, portType);
699 extensionFacade.portTypeElements(portType, reader);
705 private void parsePortTypeOperation(XMLStreamReader reader, WSDLPortTypeImpl portType) { argument
709 //skip wsdl:portType element for now
714 QName operationQName = new QName(portType.getName().getNamespaceURI(), operationName);
715 WSDLOperationImpl operation = new WSDLOperationImpl(reader,portType, operationQNam
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DPseudoSchemaBuilder.java155 PortType portType = binding.resolvePortType(wsdlDocument);
170 Set boundedOps = portType.getOperationsNamed(bindingOperation.getName());
176 if(wsdlModeler.isAsync(portType, operation)){
177 buildAsync(portType, operation, bindingOperation);
183 * @param portType
187 private void buildAsync(PortType portType, Operation operation, BindingOperation bindingOperation) { argument
289 // String namespaceURI = wsdlDocument.getDefinitions().getTargetNamespaceURI()+"?"+portType.getName()+"?" + operationName;
H A DWSDLModeler.java283 PortType portType = binding.resolvePortType(document);
290 getQNameOf(portType));
361 for (Iterator iter = portType.operations(); iter.hasNext();) {
395 portType.getOperationsNamed(bindingOperation.getName());
584 PortType portType = binding.resolvePortType(document);
585 if (isAsync(portType, info.portTypeOperation)) {
586 warning(portType, "Can not generate Async methods for non-soap binding!");
895 PortType portType = binding.resolvePortType(document);
896 if (isAsync(portType, info.portTypeOperation)) {
1201 protected boolean isAsync(com.sun.tools.internal.ws.wsdl.document.PortType portType, co argument
2744 applyWrapperStyleCustomization(Port port, PortType portType) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGeneratorExtensionFacade.java79 public void addPortTypeExtension(TypedXmlWriter portType) { argument
81 e.addPortTypeExtension(portType);
H A DWSDLGenerator.java485 * Generates the WSDL portType
489 PortType portType = portDefinitions.portType().name(model.getPortTypeName().getLocalPart());
490 extension.addPortTypeExtension(portType);
492 Operation operation = portType.operation().name(method.getOperationName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/wsdl/writer/
H A DWSDLGeneratorExtension.java120 * This method is invoked so that extensions to a <code>wsdl:portType</code>
124 * @param portType This is the wsdl:portType element that the extension can be added to.
126 public void addPortTypeExtension(TypedXmlWriter portType) { argument
142 * This method is invoked so that extensions to a <code>wsdl:portType/wsdl:operation</code>
145 * @param operation This is the wsdl:portType/wsdl:operation element that the
147 * @param method {@link JavaMethod} which captures all the information to generate wsdl:portType/wsdl:operation
159 * @param method {@link JavaMethod} which captures all the information to generate wsdl:portType/wsdl:operation
170 * @param method {@link JavaMethod} which captures all the information to generate wsdl:portType/wsdl:operation
181 * @param method {@link JavaMethod} which captures all the information to generate wsdl:portType/wsd
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DJavaMethodImpl.java337 /*package*/ void freeze(WSDLPortImpl portType) { argument
338 this.wsdlOperation = portType.getBinding().get(new QName(portType.getBinding().getPortType().getName().getNamespaceURI(),operationName));
341 throw new WebServiceException("Method "+seiMethod.getName()+" is exposed as WebMethod, but there is no corresponding wsdl operation with name "+operationName+" in the wsdl:portType" + portType.getBinding().getPortType().getName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLParser.java304 PortType portType = parsePortType(context, definitions, e2);
305 definitions.add(portType);
415 PortType portType = new PortType(definitions, forest.locatorTable.getStartLocation(e), errReceiver);
417 portType.setName(name);
431 if(portType.getDocumentation() == null)
432 portType.setDocumentation(getDocumentationFor(e2));
436 op.setParent(portType);
437 portType.add(op);
441 if (!handleExtension(context, portType, e2)) {
453 context.fireDoneParsingEntity(WSDLConstants.QNAME_PORT_TYPE, portType);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java283 String portType = elm.getTextContent();
284 String prefix = XmlUtil.getPrefix(portType);
285 String name = XmlUtil.getLocalPart(portType);
287 //if there is no portType name then its not a valid EPR but lets continue as its optional anyway
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DWSEndpointImpl.java359 QName portType = null;
361 portType = port.getBinding().getPortTypeName();
366 av, address, serviceName, portName, portType, metadata, wsdlAddress, referenceParameters,endpointReferenceExtensions.values(), null).toSpec(clazz);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLParserExtension.java440 public boolean portTypeElements(final WSDLPortType portType, final XMLStreamReader reader) { argument
442 final boolean result = processSubelement(portType, reader, getHandlers4PortTypeMap());
448 public void portTypeAttributes(final WSDLPortType portType, final XMLStreamReader reader) { argument
450 processAttributes(portType, reader, getHandlers4PortTypeMap());
752 // We store the message and portType/operation under the same namespace as the binding/operation so that we can match them up later
776 } // endif for portType:operation scope
810 if ( null != input // portType op input msg
823 } // endif portType op input msg
857 if ( null != output // portType op output msg
870 } // endif portType o
[all...]
H A DPolicyWSDLGeneratorExtension.java200 public void addPortTypeExtension(final TypedXmlWriter portType) { argument
203 selectAndProcessSubject(portType, WSDLPortType.class, ScopeType.ENDPOINT, portTypeName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java295 ReportOutput.writeQName(rtModel.getPortTypeName(), report.portType());
321 QualifiedName portType(); method in interface:WsgenTool.ReportOutput.Report

Completed in 111 milliseconds