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

com.nhl.link.rest.annotation.ClientReadable 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.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * Defines a set of properties for a given entity that can be read by the
 * client.
 * 
 * @since 1.5
 */
@Target({ TYPE })
@Retention(RUNTIME)
public @interface ClientReadable {

	String[] value();

	boolean id() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy