/sigmah/src/test/java/org/sigmah/test/TestScoped.java
Java | 17 lines | 8 code | 5 blank | 4 comment | 0 complexity | 4876751dc29f01080840cfb17a0a7531 MD5 | raw file
1/* 2 * All Sigmah code is released under the GNU General Public License v3 3 * See COPYRIGHT.txt and LICENSE.txt. 4 */ 5 6package org.sigmah.test; 7 8import com.google.inject.ScopeAnnotation; 9 10import java.lang.annotation.Retention; 11import java.lang.annotation.RetentionPolicy; 12 13 14@ScopeAnnotation 15@Retention(RetentionPolicy.RUNTIME) 16public @interface TestScoped { 17}