summaryrefslogtreecommitdiffstats
path: root/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala
diff options
context:
space:
mode:
Diffstat (limited to 'application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala')
-rw-r--r--application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala12
1 files changed, 0 insertions, 12 deletions
diff --git a/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala b/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala
deleted file mode 100644
index 6e5bb0d35b3..00000000000
--- a/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-package com.yahoo.vespa.applicationmodel
-
-/**
- * Represents a collection of service instances that together make up a service with a single cluster id.
- *
- * @author bakksjo
- */
-case class ServiceCluster[S](
- clusterId: ClusterId,
- serviceType: ServiceType,
- serviceInstances: java.util.Set[ServiceInstance[S]])