Java Code Examples for com.sun.tools.internal.ws.processor.model.Port#getProperty()
The following examples show how to use
com.sun.tools.internal.ws.processor.model.Port#getProperty() .
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: Names.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 2
Source File: Names.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 3
Source File: Names.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 4
Source File: Names.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 5
Source File: Names.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 6
Source File: Names.java From hottub with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 7
Source File: Names.java From openjdk-8-source with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 8
Source File: Names.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public static String getPortName(Port port) { String javaPortName = (String) port.getProperty(ModelProperties.PROPERTY_JAVA_PORT_NAME); if (javaPortName != null) { return javaPortName; } else { QName portName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_NAME); if (portName != null) { return portName.getLocalPart(); } else { String name = stripQualifier(port.getJavaInterface().getName()); return ClassNameInfo.replaceInnerClassSym(name); } } }
Example 9
Source File: WSDLModeler.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 10
Source File: WSDLModeler.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 11
Source File: WSDLModeler.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 12
Source File: WSDLModeler.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 13
Source File: WSDLModeler.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 14
Source File: WSDLModeler.java From hottub with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 15
Source File: WSDLModeler.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }
Example 16
Source File: WSDLModeler.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
protected String getJavaNameOfSEI(Port port) { QName portTypeName = (QName) port.getProperty( ModelProperties.PROPERTY_WSDL_PORT_TYPE_NAME); PortType pt = (PortType) document.find(Kinds.PORT_TYPE, portTypeName); //populate the portType map here. We should get rid of all these properties // lets not do it as it may break NB //TODO: clean all these stuff part of NB RFE port.portTypes.put(portTypeName, pt); JAXWSBinding jaxwsCust = (JAXWSBinding) getExtensionOfType(pt, JAXWSBinding.class); if (jaxwsCust != null && jaxwsCust.getClassName() != null) { CustomName name = jaxwsCust.getClassName(); if (name != null && !name.getName().equals("")) { return makePackageQualified(name.getName()); } } String interfaceName; if (portTypeName != null) { // got portType information from WSDL, use it to name the interface interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(portTypeName.getLocalPart())); } else { // somehow we only got the port name, so we use that interfaceName = makePackageQualified(BindingHelper.mangleNameToClassName(port.getName().getLocalPart())); } return interfaceName; }