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

com.mizhousoft.translate.baidu.profile.BaiduProfile Maven / Gradle / Ivy

package com.mizhousoft.translate.baidu.profile;

/**
 * 配置
 *
 */
public class BaiduProfile
{
	/**
	 * appId
	 */
	private volatile String appId;

	/**
	 * appSecret
	 */
	private volatile String appSecret;

	/**
	 * 获取appId
	 * 
	 * @return
	 */
	public String getAppId()
	{
		return appId;
	}

	/**
	 * 设置appId
	 * 
	 * @param appId
	 */
	public void setAppId(String appId)
	{
		this.appId = appId;
	}

	/**
	 * 获取appSecret
	 * 
	 * @return
	 */
	public String getAppSecret()
	{
		return appSecret;
	}

	/**
	 * 设置appSecret
	 * 
	 * @param appSecret
	 */
	public void setAppSecret(String appSecret)
	{
		this.appSecret = appSecret;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy