Skip to content

Instantly share code, notes, and snippets.

@pdeva
Created December 8, 2014 19:57
Show Gist options
  • Save pdeva/caae637a1f9b05eb9468 to your computer and use it in GitHub Desktop.
Save pdeva/caae637a1f9b05eb9468 to your computer and use it in GitHub Desktop.
package com.dripstat.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Prashant Deva
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface TxnContainer
{
String value() default "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment