com.ajaxjs.framework.baidu_tongji.Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ajaxjs-framework2 Show documentation
Show all versions of ajaxjs-framework2 Show documentation
AJAXJS aims to full-stack, not only the server-side framework,
but also integrates the front-end library. It's written in HTML5 + Java, a successor to the JVM platform, efficient, secure, stable, cross-platform and many other advantages, but it abandoned the traditional enterprise architecture brought about by the large and bloated,
emphasizing the lightweight, and fast, very suitable for the Internet fast application.
The newest version!
package com.ajaxjs.framework.baidu_tongji;
/**
* 百度统计配置
*
* @author Frank Cheung
*
*/
public class Config {
private String api_username;
private String api_password;
private String api_token;
private String siteId;
public String getApi_username() {
return api_username;
}
public void setApi_username(String api_username) {
this.api_username = api_username;
}
public String getApi_password() {
return api_password;
}
public void setApi_password(String api_password) {
this.api_password = api_password;
}
public String getApi_token() {
return api_token;
}
public void setApi_token(String api_token) {
this.api_token = api_token;
}
public String getSiteId() {
return siteId;
}
public void setSiteId(String siteId) {
this.siteId = siteId;
}
}