Skip to content
Snippets Groups Projects
Commit 12879c34 authored by Sören Henning's avatar Sören Henning
Browse files

annotated deprecated classes

parent f1b30d59
No related branches found
No related tags found
1 merge request!17Get impletemented stages and Java 8
Pipeline #
package kieker.analysis.domain;
@Deprecated
public class ComponentCall {
private final String container;
......
......@@ -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<>();
......
package kieker.analysis.domain;
@Deprecated
public class ComponentDependencyRelation {
private final ComponentCall caller;
......
......@@ -13,6 +13,7 @@ import java.util.Map.Entry;
* @author Sören Henning
*
*/
@Deprecated
public class OperationsDependency {
// TODO Move to Domain package
......
......@@ -9,6 +9,7 @@ package kieker.analysis.domain;
*
*/
// TODO Move to domain package
@Deprecated
public class OperationsDependencyRelation {
private final AggregatedOperationCall caller;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment