All Downloads are FREE. Search and download functionalities are using the official Maven repository.

delombok.io.github.qsy7.logging.annotation.Sensitive Maven / Gradle / Ivy

The newest version!
package io.github.qsy7.logging.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a value as sensitive and must be encrypted. TODO: specify encryption algorithm, key size
 * etc. TODO: leverage encryption project (annotation, enum, java code for encrypting, decrypting,
 * and digesting)
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.LOCAL_VARIABLE, ElementType.FIELD, ElementType.METHOD})
public @interface Sensitive {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy