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

com.nepxion.permission.annotation.Token Maven / Gradle / Ivy

Go to download

Nepxion Permission is a permission system based on Redis with Nepxion Matrix AOP framework and Aquarius framework

There is a newer version: 3.0.8
Show newest version
package com.nepxion.permission.annotation;

/**
 * 

Title: Nepxion Permission

*

Description: Nepxion Permission

*

Copyright: Copyright (c) 2017-2050

*

Company: Nepxion

* @author Haojun Ren * @version 1.0 */ import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ ElementType.PARAMETER, ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME) @Inherited @Documented public @interface Token { /** * Token值,全局唯一 * @return String */ String value() default ""; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy