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

net.mingsoft.basic.constant.e.SessionConstEnum Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2012-present 铭软科技(mingsoft.net)
 * 本软件及相关文档文件(以下简称“软件”)的版权归 铭软科技 所有
 * 遵循 铭软科技《服务协议》中的《保密条款》
 */









package net.mingsoft.basic.constant.e;

import net.mingsoft.base.constant.e.BaseSessionEnum;

/**
 * session枚举
 *
 * @author ms dev group
 * @version 版本号:100-000-000
* 创建日期:2012-03-15
* 历史修订:
*/ public enum SessionConstEnum implements BaseSessionEnum { /** * 验证码session */ CODE_SESSION("rand_code"); /** * 设置session常量 * * @param attr * 常量 */ SessionConstEnum(String attr) { this.attr = attr; } private String attr; /** * 返回SessionConst常量的字符串表示 * * @return 字符串 */ @Override public String toString() { return attr; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy