summaryrefslogtreecommitdiffstats
path: root/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ServiceCluster.scala
blob: 6e5bb0d35b372b86527bdde28e1864897ef4d2be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// 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]])