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

com.ueboot.cryption.annotation.AesSecurityParameter Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.ueboot.cryption.annotation;

import org.springframework.web.bind.annotation.Mapping;

import java.lang.annotation.*;


/**
 * 请求Aes数据解密
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Mapping
@Documented
public @interface AesSecurityParameter {

    /**
     * 入参是否解密,默认解密
     */
    boolean inDecode() default true;

    /**
     * 出参是否加密,默认加密
     */
    boolean outEncode() default true;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy