summaryrefslogtreecommitdiffstats
path: root/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestDeployment.java
blob: 3360c12e374b35aa11de3c95772bd162413ef0ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package ai.vespa.hosted.cd;

/**
 * A deployment of a Vespa application, which also contains endpoints for document manipulation.
 *
 * @author jonmv
 */
public interface TestDeployment extends Deployment {

    TestEndpoint endpoint();

    TestEndpoint endpoint(String id);

}