Created
May 4, 2020 15:45
-
-
Save edwin/c441266bf94d02630563b7a476f8810e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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