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

cn.novelweb.tool.send.message.aliyuncs.AliYunSmsFormatEnum Maven / Gradle / Ivy

package cn.novelweb.tool.send.message.aliyuncs;

/**
 * 

阿里短信发送时返回参数的语言类型配置

*

2020-08-11 21:44

* * @author Dai Yuanchuan **/ public enum AliYunSmsFormatEnum { /** * 返回参数使用json格式 */ JSON("json"), /** * 返回参数使用xml格式 */ XML("xml"); private final String format; AliYunSmsFormatEnum(String format) { this.format = format; } /** * @return 获取语言类型 */ public String getFormat() { return this.format; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy