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/bf7f8f54ec8d6c1a9f3ade1488498f26 to your computer and use it in GitHub Desktop.
Save edwin/bf7f8f54ec8d6c1a9f3ade1488498f26 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.Encrypt
* </pre>
*
* @author Muhammad Edwin < edwin at redhat dot com >
* 04 Mei 2020 11:50
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Encrypt {
String[] values();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment