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

com.sinszm.sofa.SzmLicenseProperties Maven / Gradle / Ivy

Go to download

高可用服务框架,公共依赖库 Copyright © 2021 智慧程序猿(sinsz.com) All rights reserved.

The newest version!
package com.sinszm.sofa;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * 许可授权属性
 *
 * @author sinszm
 * @date 2022/07/14
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@ConfigurationProperties(prefix = "license")
public class SzmLicenseProperties {

    /**
     * 厂商英文名称标识
     */
    private String name;

    /**
     * 授权文件名称标识
     */
    private String tag;

    /**
     * 授权文件版本标识
     */
    private String eTag;

    /**
     * 密码
     */
    private String password;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy