diff --git a/src/main/java/kieker/analysis/domain/ComponentCall.java b/src/main/java/kieker/analysis/domain/ComponentCall.java
index 4f5e474c86ee4e76066c27d73a99a09eae132194..5746d9388776d103ee075eaaa7f6eaa2d1ccb824 100644
--- a/src/main/java/kieker/analysis/domain/ComponentCall.java
+++ b/src/main/java/kieker/analysis/domain/ComponentCall.java
@@ -1,5 +1,6 @@
 package kieker.analysis.domain;
 
+@Deprecated
 public class ComponentCall {
 
 	private final String container;
diff --git a/src/main/java/kieker/analysis/domain/ComponentDependency.java b/src/main/java/kieker/analysis/domain/ComponentDependency.java
index 2bd9c8571ffd3b07d42ead3e43c25b72e70cafdb..e04ad768c160c1bca9748f51299aa19e91bdbf78 100644
--- a/src/main/java/kieker/analysis/domain/ComponentDependency.java
+++ b/src/main/java/kieker/analysis/domain/ComponentDependency.java
@@ -4,6 +4,7 @@ import java.util.Collection;
 import java.util.HashMap;
 import java.util.Map;
 
+@Deprecated
 public class ComponentDependency {
 
 	private final Map<String, ComponentCall> components = new HashMap<>();
diff --git a/src/main/java/kieker/analysis/domain/ComponentDependencyRelation.java b/src/main/java/kieker/analysis/domain/ComponentDependencyRelation.java
index ff913f66b93035b4c4cedaed9a1e85006484f7e1..6ff5a099147757b59264c9336140ed20a85ff537 100644
--- a/src/main/java/kieker/analysis/domain/ComponentDependencyRelation.java
+++ b/src/main/java/kieker/analysis/domain/ComponentDependencyRelation.java
@@ -1,5 +1,6 @@
 package kieker.analysis.domain;
 
+@Deprecated
 public class ComponentDependencyRelation {
 
 	private final ComponentCall caller;
diff --git a/src/main/java/kieker/analysis/domain/OperationsDependency.java b/src/main/java/kieker/analysis/domain/OperationsDependency.java
index 2b8562b6a7068da71c183e555929bc9bedbfbf67..f15c3a7deabec7fd0a5b2147d042533213f074a7 100644
--- a/src/main/java/kieker/analysis/domain/OperationsDependency.java
+++ b/src/main/java/kieker/analysis/domain/OperationsDependency.java
@@ -13,6 +13,7 @@ import java.util.Map.Entry;
  * @author Sören Henning
  *
  */
+@Deprecated
 public class OperationsDependency {
 
 	// TODO Move to Domain package
diff --git a/src/main/java/kieker/analysis/domain/OperationsDependencyRelation.java b/src/main/java/kieker/analysis/domain/OperationsDependencyRelation.java
index 530527acc2240edba1a62fd64bfca74999b47611..5322c108921ca36f1aa9a943d0d594b29bc4287b 100644
--- a/src/main/java/kieker/analysis/domain/OperationsDependencyRelation.java
+++ b/src/main/java/kieker/analysis/domain/OperationsDependencyRelation.java
@@ -9,6 +9,7 @@ package kieker.analysis.domain;
  *
  */
 // TODO Move to domain package
+@Deprecated
 public class OperationsDependencyRelation {
 
 	private final AggregatedOperationCall caller;