Lines Matching refs:QName

65 import javax.xml.namespace.QName;
119 * through {@link #addPort(QName, String, String)}.
124 private final Map<QName, PortInfo> ports = new HashMap<QName, PortInfo>();
126 Map<QName, PortInfo> getQNameToPortInfoMap() { return ports; }
138 private final @NotNull QName serviceName;
144 private final Map<QName,SEIPortInfo> seiContext = new HashMap<QName,SEIPortInfo>();
167 public WSServiceDelegate(URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass) {
177 public WSServiceDelegate(@Nullable Source wsdl, @NotNull QName serviceName, @NotNull final Class<? extends Service> serviceClass) {
293 public <T> T getPort(QName portName, Class<T> portInterface) throws WebServiceException {
297 public <T> T getPort(QName portName, Class<T> portInterface, WebServiceFeature... features) {
321 QName portTypeName = RuntimeModeler.getPortTypeName(portInterface);
323 QName portName = getPortNameFromEPR(wsepr, portTypeName);
327 private <T> T getPort(WSEndpointReference wsepr, QName portName, Class<T> portInterface,
334 QName portTypeName = RuntimeModeler.getPortTypeName(portInterface);
349 QName portName = port.getName();
357 public void addPort(QName portName, String bindingId, String endpointAddress) throws WebServiceException {
368 public <T> Dispatch<T> createDispatch(QName portName, Class<T> aClass, Service.Mode mode) throws WebServiceException {
373 public <T> Dispatch<T> createDispatch(QName portName, WSEndpointReference wsepr, Class<T> aClass, Service.Mode mode, WebServiceFeature... features) {
382 public <T> Dispatch<T> createDispatch(QName portName, Class<T> aClass, Service.Mode mode, WebServiceFeature... features) {
393 QName portName = addPortEpr(wsepr);
402 PortInfo safeGetPort(QName portName) {
410 private StringBuilder buildNameList(Collection<QName> names) {
412 for (QName qn : names) {
419 public EndpointAddress getEndpointAddress(QName qName) {
423 public Dispatch<Object> createDispatch(QName portName, JAXBContext jaxbContext, Service.Mode mode) throws WebServiceException {
428 public Dispatch<Object> createDispatch(QName portName, WSEndpointReference wsepr, JAXBContext jaxbContext, Service.Mode mode, WebServiceFeature... features) {
443 public Dispatch<Object> createDispatch(QName portName, JAXBContext jaxbContext, Service.Mode mode, WebServiceFeature... webServiceFeatures) {
454 QName portName = addPortEpr(wsepr);
458 private QName addPortEpr(WSEndpointReference wsepr) {
461 QName eprPortName = getPortNameFromEPR(wsepr, null);
477 * If EndpointName ( port name) is null in EPR, then it will try to get if from WSDLModel using portType QName
486 private QName getPortNameFromEPR(@NotNull WSEndpointReference wsepr, @Nullable QName portTypeName) {
487 QName portName;
489 QName eprServiceName = metadata.getServiceName();
490 QName eprPortName = metadata.getPortName();
492 throw new WebServiceException("EndpointReference WSDL ServiceName differs from Service Instance WSDL Service QName.\n"
555 public QName getServiceName() {
563 public Iterator<QName> getPorts() throws WebServiceException {
578 private <T> T createEndpointIFBaseProxy(@Nullable WSEndpointReference epr,QName portName, final Class<T> portInterface,
627 Set<QName> wsdlPortNames = new HashSet<QName>();
638 private @NotNull WSDLPortImpl getPortModel(WSDLServiceImpl wsdlService, QName portName) {
651 private SEIPortInfo addSEI(QName portName, Class portInterface, WebServiceFeature... features) throws WebServiceException {
667 private SEIPortInfo createSEIPortInfo(QName portName, Class portInterface, WebServiceFeature... features) {