package com.ctp.cdi.query; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Limit the size of the result set. Must be applied to an Integer parameter. * @author thomashug */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.PARAMETER) public @interface MaxResults { }