src/Configuration.h
branchv_0
changeset 2 4b05b16b97e6
parent 0 7b70918c30af
--- a/src/Configuration.h	Thu Apr 07 21:06:37 2022 +0200
+++ b/src/Configuration.h	Thu Apr 07 23:04:12 2022 +0200
@@ -25,40 +25,9 @@
 namespace tr {
 namespace httpd {
 
-enum class InputAttributePolicy {
-	Prepend,
-	Append,
-	Auto
-};
-
-class AttributeRecipe {
-public:
-
-	virtual ~AttributeRecipe() {
-	}
-
-	relpipe::common::type::StringX name;
-	relpipe::writer::TypeId type;
-	relpipe::common::type::StringX httpd;
-};
-
-class RelationConfiguration {
-public:
-
-	virtual ~RelationConfiguration() {
-	}
-
-	relpipe::common::type::StringX relation;
-	relpipe::common::type::StringX where;
-	InputAttributePolicy inputAttributePolicy = InputAttributePolicy::Auto;
-	std::vector<AttributeRecipe> outputAttributes;
-	std::vector<relpipe::common::type::StringX> xmlAttributes;
-};
-
 class Configuration {
 public:
-	std::vector<RelationConfiguration> relationConfigurations;
-	std::vector<relpipe::common::type::StringX> namespaceMappings;
+	uint16_t tcpPort = 8080;
 
 	virtual ~Configuration() {
 	}