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

/**
 * A schema-less representation of a generic Vespa document.
 *
 * @author jonmv
 */
public class Document {


    /** Returns a copy of this document, updated with the data in the given document. */
    public Document updatedBy(Document update) {
        return null;
    }

}