Created
October 7, 2014 14:05
-
-
Save bitbrain/333316765e82f40adba8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package de.bitbrain.guice; | |
import static java.lang.annotation.ElementType.METHOD; | |
import static java.lang.annotation.ElementType.TYPE; | |
import static java.lang.annotation.RetentionPolicy.RUNTIME; | |
import java.lang.annotation.Retention; | |
import java.lang.annotation.Target; | |
import com.google.inject.ScopeAnnotation; | |
@Target({ TYPE, METHOD }) @Retention(RUNTIME) @ScopeAnnotation | |
public @interface StateScoped {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment