All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nhl.link.rest.annotation.LrAttribute Maven / Gradle / Ivy

Go to download

There is a newer version: 2.13
Show newest version
package com.nhl.link.rest.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Annotates a getter of a property in a POJO to indicate that the property is a
 * LinkRest-exposed attribute.
 * 
 * @since 1.15
 */
@Target({ METHOD })
@Retention(RUNTIME)
public @interface LrAttribute {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy