From 396008440c7bcdb1cbb7a3c5d6270814dfb0e341 Mon Sep 17 00:00:00 2001 From: antelder Date: Tue, 30 Nov 2010 19:00:47 +0000 Subject: delete the beta2 branch as i'd not seen raymonds mail when i made it and we might as well wait till he's got his changes in before creating the beta2 branch git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1040700 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/binding/ws/impl/WebServiceBindingImpl.java | 460 --------------------- 1 file changed, 460 deletions(-) delete mode 100644 sca-java-2.x/branches/2.0-Beta2/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java (limited to 'sca-java-2.x/branches/2.0-Beta2/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java') diff --git a/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java b/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java deleted file mode 100644 index 8e3c9262a2..0000000000 --- a/sca-java-2.x/branches/2.0-Beta2/modules/binding-ws/src/main/java/org/apache/tuscany/sca/binding/ws/impl/WebServiceBindingImpl.java +++ /dev/null @@ -1,460 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -package org.apache.tuscany.sca.binding.ws.impl; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.wsdl.Binding; -import javax.wsdl.BindingOperation; -import javax.wsdl.Definition; -import javax.wsdl.Message; -import javax.wsdl.Part; -import javax.wsdl.Port; -import javax.wsdl.Service; -import javax.wsdl.extensions.soap.SOAPBinding; -import javax.wsdl.extensions.soap.SOAPBody; -import javax.xml.namespace.QName; - -import org.apache.tuscany.sca.assembly.Extensible; -import org.apache.tuscany.sca.assembly.Extension; -import org.apache.tuscany.sca.assembly.OperationSelector; -import org.apache.tuscany.sca.assembly.WireFormat; -import org.apache.tuscany.sca.binding.ws.WebServiceBinding; -import org.apache.tuscany.sca.interfacedef.Interface; -import org.apache.tuscany.sca.interfacedef.InterfaceContract; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLDefinition; -import org.apache.tuscany.sca.interfacedef.wsdl.WSDLInterface; -import org.apache.tuscany.sca.policy.ExtensionType; -import org.apache.tuscany.sca.policy.Intent; -import org.apache.tuscany.sca.policy.PolicySet; -import org.apache.tuscany.sca.policy.PolicySubject; -import org.w3c.dom.Element; - -/** - * Represents a WebService binding. - * - * @version $Rev$ $Date$ - */ -class WebServiceBindingImpl implements WebServiceBinding, PolicySubject, Extensible { - private String name; - private String uri; - private boolean unresolved; - private List extensions = new ArrayList(); - private List attributeExtensions = new ArrayList(); - private List requiredIntents = new ArrayList(); - private List policySets = new ArrayList(); - private ExtensionType extensionType; - private String location; - private Binding binding; - private Service service; - private Port port; - private Port endpoint; - private QName bindingName; - private String portName; - private QName serviceName; - private String endpointName; - private InterfaceContract bindingInterfaceContract; - private Element endPointReference; - private String wsdlNamespace; - private WSDLDefinition userSpecifiedWSDLDefinition; - private Definition generatedWSDLDocument; - private boolean isDocumentStyle; - private boolean isLiteralEncoding; - private boolean isMessageWrapped; - private Map wsdliLocations = new HashMap(); - - protected WebServiceBindingImpl() { - } - - /** - * Provide a meaningful representation of this Binding - */ - public String toString() { - return "Web Service Binding: " + name; - } // end method toString - - public String getName() { - return name; - } - - public String getURI() { - return uri; - } - - public void setName(String name) { - this.name = name; - } - - public void setURI(String uri) { - this.uri = uri; - } - - public boolean isUnresolved() { - return unresolved; - } - - public void setUnresolved(boolean unresolved) { - this.unresolved = unresolved; - } - - @Override - public Object clone() throws CloneNotSupportedException { - return super.clone(); - } - - public List getExtensions() { - return extensions; - } - - public List getAttributeExtensions() { - return attributeExtensions; - } - - public String getLocation() { - return location; - } - - public void setLocation(String location) { - this.location = location; - } - - public Binding getBinding() { - if (binding == null) { - if (getUserSpecifiedWSDLDefinition() != null && userSpecifiedWSDLDefinition.getBinding() != null) { - binding = userSpecifiedWSDLDefinition.getBinding(); - determineWSDLCharacteristics(); - } - } - return binding; - } - - public QName getBindingName() { - if (isUnresolved()) { - return bindingName; - } else if (binding != null) { - return binding.getQName(); - } else { - return null; - } - } - - public String getEndpointName() { - if (isUnresolved()) { - return endpointName; - } else if (endpoint != null) { - //TODO support WSDL 2.0 - return endpoint.getName(); - } else { - return null; - } - } - - public Port getEndpoint() { - return endpoint; - } - - public Port getPort() { - return port; - } - - public String getPortName() { - if (isUnresolved()) { - return portName; - } else if (port != null) { - return port.getName(); - } else { - return null; - } - } - - public Service getService() { - return service; - } - - public QName getServiceName() { - if (isUnresolved()) { - return serviceName; - } else if (service != null) { - return service.getQName(); - } else { - return null; - } - } - - public void setBinding(Binding binding) { - this.binding = binding; - determineWSDLCharacteristics(); - } - - public void setBindingName(QName bindingName) { - if (!isUnresolved()) { - throw new IllegalStateException(); - } - this.bindingName = bindingName; - } - - public void setEndpoint(Port endpoint) { - this.endpoint = endpoint; - } - - public void setEndpointName(String endpointName) { - if (!isUnresolved()) { - throw new IllegalStateException(); - } - this.endpointName = endpointName; - } - - public void setPort(Port port) { - this.port = port; - } - - public void setPortName(String portName) { - if (!isUnresolved()) { - throw new IllegalStateException(); - } - this.portName = portName; - } - - public void setService(Service service) { - this.service = service; - } - - public void setServiceName(QName serviceName) { - if (!isUnresolved()) { - throw new IllegalStateException(); - } - this.serviceName = serviceName; - } - - public WSDLDefinition getUserSpecifiedWSDLDefinition() { - if (userSpecifiedWSDLDefinition == null) { - Interface iface = bindingInterfaceContract.getInterface(); - if (iface instanceof WSDLInterface) { - userSpecifiedWSDLDefinition = ((WSDLInterface) iface).getWsdlDefinition(); - } - } - return userSpecifiedWSDLDefinition; - } - - public void setUserSpecifiedWSDLDefinition(WSDLDefinition wsdlDefinition) { - this.userSpecifiedWSDLDefinition = wsdlDefinition; - } - - public String getNamespace() { - return wsdlNamespace; - } - - public void setNamespace(String namespace) { - this.wsdlNamespace = namespace; - } - - public InterfaceContract getBindingInterfaceContract() { - return bindingInterfaceContract; - } - - public void setBindingInterfaceContract(InterfaceContract bindingInterfaceContract) { - this.bindingInterfaceContract = bindingInterfaceContract; - } - - public List getPolicySets() { - return policySets; - } - - public List getRequiredIntents() { - return requiredIntents; - } - - public ExtensionType getExtensionType() { - return extensionType; - } - - public void setExtensionType(ExtensionType intentAttachPointType) { - this.extensionType = intentAttachPointType; - } - - public Element getEndPointReference() { - return endPointReference; - } - - public void setEndPointReference(Element epr) { - this.endPointReference = epr; - } - - public Definition getGeneratedWSDLDocument() { - return generatedWSDLDocument; - } - - public void setGeneratedWSDLDocument(Definition definition) { - this.generatedWSDLDocument = definition; - determineWSDLCharacteristics(); - } - - public QName getType() { - return TYPE; - } - - public WireFormat getRequestWireFormat() { - return null; - } - - public void setRequestWireFormat(WireFormat wireFormat) { - } - - public WireFormat getResponseWireFormat() { - return null; - } - - public void setResponseWireFormat(WireFormat wireFormat) { - } - - public OperationSelector getOperationSelector() { - return null; - } - - public void setOperationSelector(OperationSelector operationSelector) { - } - - /** - * Some items get calculated and cached as they are used at runtime - * to decide what message processing is required - */ - protected void determineWSDLCharacteristics() { - setIsDocumentStyle(); - setIsLiteralEncoding(); - setIsMessageWrapped(); - } - - protected void setIsDocumentStyle() { - - if (binding == null){ - if (userSpecifiedWSDLDefinition != null && userSpecifiedWSDLDefinition.getDefinition() != null){ - Message firstMessage = (Message)userSpecifiedWSDLDefinition.getDefinition().getMessages().values().iterator().next(); - Part firstPart = (Part)firstMessage.getParts().values().iterator().next(); - if (firstPart.getTypeName() != null){ - isDocumentStyle = false; - return; - } - } - - // default to document style - isDocumentStyle = true; - return; - } else { - for (Object ext : binding.getExtensibilityElements()){ - if (ext instanceof SOAPBinding){ - if (((SOAPBinding)ext).getStyle().equals("rpc")){ - isDocumentStyle = false; - return; - } else { - isDocumentStyle = true; - return; - } - } - } - isDocumentStyle = true; - return; - } - - } - - protected void setIsLiteralEncoding() { - - if (binding == null){ - // default to literal encoding - isLiteralEncoding = true; - return; - } else { - for(Object ext : ((BindingOperation)binding.getBindingOperations().get(0)).getBindingInput().getExtensibilityElements()){ - if (ext instanceof SOAPBody){ - if (((SOAPBody)ext).getUse().equals("literal")){ - isLiteralEncoding = true; - return; - } else { - isLiteralEncoding = false; - return; - } - } - } - isLiteralEncoding = true; - return; - } - } - - protected void setIsMessageWrapped() { - if (getBindingInterfaceContract() != null){ - isMessageWrapped = getBindingInterfaceContract().getInterface().getOperations().get(0).isWrapperStyle(); - } - } - - public boolean isRpcEncoded() { - return (!isDocumentStyle) && (!isLiteralEncoding); - } - - public boolean isRpcLiteral() { - return (!isDocumentStyle) && (isLiteralEncoding); - } - - public boolean isDocEncoded() { - return (isDocumentStyle) && (!isLiteralEncoding); - } - - public boolean isDocLiteralUnwrapped() { - setIsMessageWrapped(); - return (isDocumentStyle) && (isLiteralEncoding) && (!isMessageWrapped); - } - - public boolean isDocLiteralWrapped() { - setIsMessageWrapped(); - return (isDocumentStyle) && (isLiteralEncoding) &&(isMessageWrapped); - } - - public boolean isDocLiteralBare() { - setIsMessageWrapped(); - return (isDocumentStyle) && (isLiteralEncoding); - } - - public boolean isHTTPTransport() { - return getBindingTransport().equals("http://schemas.xmlsoap.org/soap/http"); - } - - public boolean isJMSTransport() { - return getBindingTransport().equals("http://schemas.xmlsoap.org/soap/jms"); - } - - public String getBindingTransport() { - if (binding != null){ - for (Object ext : binding.getExtensibilityElements()){ - if (ext instanceof SOAPBinding){ - return ((SOAPBinding)ext).getTransportURI(); - } - } - } - - // if no binding is explicitly specified by the user then default to http - return "http://schemas.xmlsoap.org/soap/http"; - } - - public Map getWsdliLocations() { - return wsdliLocations ; - } -} -- cgit v1.2.3