summaryrefslogtreecommitdiff
path: root/src/main/java/com/amazon/carbonado/Name.java
blob: 39b1ba8fd4ceb62dbe17d79c96a9713baa92a0e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.amazon.carbonado;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Name {

    /**
     * The prefered name of the property
     */
    String value();

}