summaryrefslogtreecommitdiffstats
path: root/application-model/src/main/scala/com/yahoo/vespa/applicationmodel/ApplicationInstance.scala
blob: 68f32db22dd93908f89f011b753a4b2e71ed7a37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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

/**
 * TODO: What is this
 *
 * @author bakksjo
 */
case class ApplicationInstance[S](
  tenantId: TenantId,
  applicationInstanceId: ApplicationInstanceId,

  // TODO: What is this for?
  serviceClusters: java.util.Set[ServiceCluster[S]]) {

  def reference = ApplicationInstanceReference(tenantId, applicationInstanceId)
}