package com.ocpsoft.socialpm.gwt.client.local.history; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.ElementType.TYPE; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import javax.inject.Qualifier; @Qualifier @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ TYPE, METHOD, FIELD, PARAMETER }) public @interface CurrentHistory { }