Skip to content

Instantly share code, notes, and snippets.

@edwin
Created May 4, 2020 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwin/c441266bf94d02630563b7a476f8810e to your computer and use it in GitHub Desktop.
Save edwin/c441266bf94d02630563b7a476f8810e to your computer and use it in GitHub Desktop.
package com.redhat.edwin.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* <pre>
* com.redhat.edwin.annotation.Decrypt
* </pre>
*
* @author Muhammad Edwin < edwin at redhat dot com >
* 04 Mei 2020 11:50
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Decrypt {
String[] values();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment