summaryrefslogtreecommitdiffstats
path: root/tenant-cd/src/main/java/ai/vespa/hosted/cd/TestDeployment.java
blob: bc00b6e0dc62f8a75aedd9f7bed3e90b50ed361a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {

    /** Returns a {@link TestEndpoint} in the cluster with the "default" id. */
    @Override
    TestEndpoint endpoint();

    /** Returns a {@link TestEndpoint} in the cluster with the given id. */
    @Override
    TestEndpoint endpoint(String id);

}