Renamed VerificationExecutor, as it may be used for any crypto task.

This commit is contained in:
akwizgran
2013-03-12 16:19:36 +00:00
parent 36df192521
commit d3b742e14c
9 changed files with 39 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
package net.sf.briar.api.messaging;
package net.sf.briar.api.crypto;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@@ -8,8 +8,8 @@ import java.lang.annotation.Target;
import com.google.inject.BindingAnnotation;
/** Annotation for injecting the executor for message verification tasks. */
/** Annotation for injecting the executor for long-running crypto tasks. */
@BindingAnnotation
@Target({ PARAMETER })
@Retention(RUNTIME)
public @interface VerificationExecutor {}
public @interface CryptoExecutor {}