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

org.springframework.content.rest.StoreRestResource Maven / Gradle / Ivy

There is a newer version: 3.0.15
Show newest version
package org.springframework.content.rest;

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

@Target({ ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface StoreRestResource {

	/**
	 * The path segment under which this resource is to be exported.
	 * 
	 * @return A valid path segment.
	 */
	String path() default "";

	String linkRel() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy