summaryrefslogtreecommitdiffstats
path: root/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension
diff options
context:
space:
mode:
Diffstat (limited to 'tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension')
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.cpp46
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.h79
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.cpp47
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.h78
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.cpp46
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.h81
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.cpp46
-rw-r--r--tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.h81
8 files changed, 0 insertions, 504 deletions
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.cpp b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.cpp
deleted file mode 100644
index a20cf1f6da..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.cpp
+++ /dev/null
@@ -1,46 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#include "tuscany/sca/extension/ImplementationExtension.h"
-#include "tuscany/sca/util/Logging.h"
-
-namespace tuscany
-{
- namespace sca
- {
- // ===================================================================
- // Constructor for the ImplementationExtension class.
- // ===================================================================
- ImplementationExtension::ImplementationExtension()
- {
- logentry();
- }
-
- // ===================================================================
- // Destructor for the ImplementationExtension class.
- // ===================================================================
- ImplementationExtension::~ImplementationExtension()
- {
- logentry();
- }
-
- } // End namespace sca
-} // End namespace tuscany
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.h b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.h
deleted file mode 100644
index 524af2df77..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ImplementationExtension.h
+++ /dev/null
@@ -1,79 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#ifndef tuscany_sca_extension_implementationextension_h
-#define tuscany_sca_extension_implementationextension_h
-
-#include <string>
-
-#include "commonj/sdo/SDO.h"
-
-#include "tuscany/sca/export.h"
-#include "tuscany/sca/model/Component.h"
-#include "tuscany/sca/model/Service.h"
-#include "tuscany/sca/core/ServiceWrapper.h"
-#include "tuscany/sca/model/Composite.h"
-
-namespace tuscany
-{
- namespace sca
- {
- class SCA_API ImplementationExtension
- {
- public:
- /**
- * Default constructor
- */
- ImplementationExtension();
-
- /**
- * Destructor
- */
- virtual ~ImplementationExtension();
-
- /**
- * return the name of the extension (e.g. "cpp" "php")
- */
- virtual const std::string& getExtensionName() = 0;
-
- /**
- * return the QName of schema elemant for this implementation extension
- * (e.g. "http://www.osoa.org/xmlns/sca/1.0#implementation.cpp")
- */
- virtual const std::string& getExtensionTypeQName() = 0;
-
- /**
- * Get an implementation from a DataObject representing
- * an SCDL implementation element
- */
- virtual tuscany::sca::model::ComponentType* getImplementation(
- tuscany::sca::model::Composite* composite,
- commonj::sdo::DataObjectPtr scdlImplementation) = 0;
-
- };
-
-
- } // End namespace sca
-} // End namespace tuscany
-
-
-#endif // tuscany_sca_extension_implementationextension_h
-
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.cpp b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.cpp
deleted file mode 100644
index 584945344b..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.cpp
+++ /dev/null
@@ -1,47 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#include "tuscany/sca/extension/InterfaceExtension.h"
-#include "tuscany/sca/util/Logging.h"
-
-namespace tuscany
-{
- namespace sca
- {
- // ===================================================================
- // Constructor for the InterfaceExtension class.
- // ===================================================================
- InterfaceExtension::InterfaceExtension()
- {
- logentry();
- }
-
- // ===================================================================
- // Destructor for the InterfaceExtension class.
- // ===================================================================
- InterfaceExtension::~InterfaceExtension()
- {
- logentry();
- }
-
-
- } // End namespace sca
-} // End namespace tuscany
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.h b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.h
deleted file mode 100644
index 5329104c77..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/InterfaceExtension.h
+++ /dev/null
@@ -1,78 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#ifndef tuscany_sca_extension_interfaceextension_h
-#define tuscany_sca_extension_interfaceextension_h
-
-#include <string>
-
-#include "commonj/sdo/SDO.h"
-
-#include "tuscany/sca/export.h"
-#include "tuscany/sca/model/Interface.h"
-#include "tuscany/sca/model/Composite.h"
-
-
-namespace tuscany
-{
- namespace sca
- {
- class SCA_API InterfaceExtension
- {
- public:
- /**
- * Default constructor
- */
- InterfaceExtension();
-
- /**
- * Destructor
- */
- virtual ~InterfaceExtension();
-
- /**
- * return the name of the extension (e.g. "cpp" "php")
- */
- virtual const std::string& getExtensionName() = 0;
-
- /**
- * return the QName of schema elemant for this interface extension
- * (e.g. "http://www.osoa.org/xmlns/sca/1.0#interface.cpp")
- */
- virtual const std::string& getExtensionTypeQName() = 0;
-
- /**
- * Get an interface from a DataObject representing an
- * SCDL interface
- */
- virtual tuscany::sca::model::Interface* getInterface(
- tuscany::sca::model::Composite *composite,
- commonj::sdo::DataObjectPtr scdlInterface) = 0;
-
- };
-
-
- } // End namespace sca
-} // End namespace tuscany
-
-
-#endif // tuscany_sca_extension_interfaceextension_h
-
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.cpp b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.cpp
deleted file mode 100644
index a7f60dcbec..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.cpp
+++ /dev/null
@@ -1,46 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#include "tuscany/sca/extension/ReferenceBindingExtension.h"
-#include "tuscany/sca/util/Logging.h"
-
-namespace tuscany
-{
- namespace sca
- {
- // ===================================================================
- // Constructor for the ReferenceBindingExtension class.
- // ===================================================================
- ReferenceBindingExtension::ReferenceBindingExtension()
- {
- logentry();
- }
-
- // ===================================================================
- // Destructor for the ReferenceBindingExtension class.
- // ===================================================================
- ReferenceBindingExtension::~ReferenceBindingExtension()
- {
- logentry();
- }
-
- } // End namespace sca
-} // End namespace tuscany
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.h b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.h
deleted file mode 100644
index c3d1e97c9e..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ReferenceBindingExtension.h
+++ /dev/null
@@ -1,81 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#ifndef tuscany_sca_extension_referencebindingextension_h
-#define tuscany_sca_extension_referencebindingextension_h
-
-#include <string>
-
-#include "commonj/sdo/SDO.h"
-
-#include "tuscany/sca/export.h"
-#include "tuscany/sca/model/Component.h"
-#include "tuscany/sca/model/Reference.h"
-#include "tuscany/sca/core/ServiceWrapper.h"
-#include "tuscany/sca/model/Composite.h"
-#include "tuscany/sca/model/ReferenceBinding.h"
-
-
-namespace tuscany
-{
- namespace sca
- {
- class SCA_API ReferenceBindingExtension
- {
- public:
- /**
- * Default constructor
- */
- ReferenceBindingExtension();
-
- /**
- * Destructor
- */
- virtual ~ReferenceBindingExtension();
-
- /**
- * return the name of the extension (e.g. "cpp" "php")
- */
- virtual const std::string& getExtensionName() = 0;
-
- /**
- * return the QName of schema elemant for this binding extension
- * (e.g. "http://www.osoa.org/xmlns/sca/1.0#binding.ws")
- */
- virtual const std::string& getExtensionTypeQName() = 0;
-
- /**
- * Get a reference binding from a DataObject representing
- * an SCDL binding element
- */
- virtual tuscany::sca::model::ReferenceBinding* getReferenceBinding(
- tuscany::sca::model::Composite* composite,
- tuscany::sca::model::Reference* reference,
- commonj::sdo::DataObjectPtr scdlBinding) = 0;
-
- };
-
-
- } // End namespace sca
-} // End namespace tuscany
-
-#endif // tuscany_sca_extension_referencebindingextension_h
-
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.cpp b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.cpp
deleted file mode 100644
index f5fe361d36..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.cpp
+++ /dev/null
@@ -1,46 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#include "tuscany/sca/extension/ServiceBindingExtension.h"
-#include "tuscany/sca/util/Logging.h"
-
-namespace tuscany
-{
- namespace sca
- {
- // ===================================================================
- // Constructor for the ServiceBindingExtension class.
- // ===================================================================
- ServiceBindingExtension::ServiceBindingExtension()
- {
- logentry();
- }
-
- // ===================================================================
- // Destructor for the ServiceBindingExtension class.
- // ===================================================================
- ServiceBindingExtension::~ServiceBindingExtension()
- {
- logentry();
- }
-
- } // End namespace sca
-} // End namespace tuscany
diff --git a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.h b/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.h
deleted file mode 100644
index d2f7e72ed0..0000000000
--- a/tags/native-sca-1.0.incubating-M3-RC1/runtime/core/src/tuscany/sca/extension/ServiceBindingExtension.h
+++ /dev/null
@@ -1,81 +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.
- */
-
-/* $Rev$ $Date$ */
-
-#ifndef tuscany_sca_extension_servicebindingextension_h
-#define tuscany_sca_extension_servicebindingextension_h
-
-#include <string>
-
-#include "commonj/sdo/SDO.h"
-
-#include "tuscany/sca/export.h"
-#include "tuscany/sca/model/Component.h"
-#include "tuscany/sca/model/Service.h"
-#include "tuscany/sca/core/ServiceWrapper.h"
-#include "tuscany/sca/model/Composite.h"
-#include "tuscany/sca/model/ServiceBinding.h"
-
-
-namespace tuscany
-{
- namespace sca
- {
- class SCA_API ServiceBindingExtension
- {
- public:
- /**
- * Default constructor
- */
- ServiceBindingExtension();
-
- /**
- * Destructor
- */
- virtual ~ServiceBindingExtension();
-
- /**
- * return the name of the extension (e.g. "cpp" "php")
- */
- virtual const std::string& getExtensionName() = 0;
-
- /**
- * return the QName of schema elemant for this binding extension
- * (e.g. "http://www.osoa.org/xmlns/sca/1.0#binding.ws")
- */
- virtual const std::string& getExtensionTypeQName() = 0;
-
- /**
- * Get a reference binding from a DataObject representing
- * an SCDL binding element
- */
- virtual tuscany::sca::model::ServiceBinding* getServiceBinding(
- tuscany::sca::model::Composite* composite,
- tuscany::sca::model::Service* service,
- commonj::sdo::DataObjectPtr scdlBinding) = 0;
-
- };
-
-
- } // End namespace sca
-} // End namespace tuscany
-
-#endif // tuscany_sca_extension_servicebindingextension_h
-