aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/main/java/com/yahoo/document/Generated.java
blob: a52e7333ff29be99513f90f03373f76b2d21678d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Classes generated by vespa-documentgen-plugin are annotated with this.  It
 * differs from <code>javax.annotation.Generated</code> in that the retention
 * policy is Runtime.
 *
 * @author Vegard Havdal
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface Generated {

}