package org.springframework.roo.addon.layers.repository.jpa.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marks the annotated type as a Spring Data JPA read only repository interface. * * @author Juan Carlos GarcĂ­a * @since 2.0 */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface RooReadOnlyRepository { }