Initial OpenECOMP MSO commit

Change-Id: Ia6a7574859480717402cc2f22534d9973a78fa6d
Signed-off-by: ChrisC <cc697w@intl.att.com>
diff --git a/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapter.wsdl b/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapter.wsdl
new file mode 100644
index 0000000..2f4c5ad
--- /dev/null
+++ b/adapters/mso-sdnc-adapter/src/main/resources/SDNCAdapter.wsdl
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
+	xmlns:sdncadaptersc="http://domain2.att.com/workflow/sdnc/adapter/schema/v1"
+	xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
+	xmlns:tns="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1"
+	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+	xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+	targetNamespace="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1">
+	<types>
+		<schema xmlns="http://www.w3.org/2001/XMLSchema"
+			elementFormDefault="qualified"
+			targetNamespace="http://domain2.att.com/workflow/sdnc/adapter/wsdl/v1">
+			<import namespace="http://domain2.att.com/workflow/sdnc/adapter/schema/v1"
+				schemaLocation="SDNCAdapterSchema.xsd" />
+		</schema>
+	</types>
+
+	<message name="SDNCAdapterRequest">
+		<part element="sdncadaptersc:SDNCAdapterRequest" name="SDNCAdapterRequest">
+		</part>
+	</message>
+	<message name="SDNCAdapterResponse">
+		<part element="sdncadaptersc:SDNCAdapterResponse" name="SDNCAdapterResponse">
+		</part>
+	</message>
+
+	<portType name="SDNCAdapterPortType">
+		<operation name="SDNCAdapter">
+			<input message="tns:SDNCAdapterRequest" name="SDNCAdapterRequest">
+			</input>
+			<output message="tns:SDNCAdapterResponse" name="SDNCAdapterResponse">
+			</output>
+		</operation>
+	</portType>
+
+	<binding name="SDNCAdapterSoapHttpBinding" type="tns:SDNCAdapterPortType">
+		<soap:binding style="document"
+			transport="http://schemas.xmlsoap.org/soap/http" />
+		<operation name="SDNCAdapter">
+			<soap:operation soapAction="" style="document" />
+			<input>
+				<soap:body use="literal" />
+			</input>
+			<output>
+				<soap:body use="literal" />
+			</output>
+		</operation>
+	</binding>
+
+	<service name="SDNCAdapterService">
+		<port binding="tns:SDNCAdapterSoapHttpBinding" name="SDNCAdapterSoapHttpPort">
+			<soap:address location="SDNCAdapterService" />
+		</port>
+	</service>
+</definitions>