io.geewit.boot.aliyun.ons.AliyunOnsProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw-boot-starter-aliyun-ons Show documentation
Show all versions of gw-boot-starter-aliyun-ons Show documentation
A Java Utils Libraray By Geewit
package io.geewit.boot.aliyun.ons;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* aliyun ons properties
*
* @author geewit
*/
@ConfigurationProperties(prefix = "aliyun.ons")
public class AliyunOnsProperties {
/**
* onsaddr
*/
private String onsaddr;
/**
* sendTimeout
*/
private String sendTimeout;
public String getOnsaddr() {
return onsaddr;
}
public void setOnsaddr(String onsaddr) {
this.onsaddr = onsaddr;
}
public String getSendTimeout() {
return sendTimeout;
}
public void setSendTimeout(String sendTimeout) {
this.sendTimeout = sendTimeout;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy