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

com.ksyun.ks3.http.WebServiceRequestConfig Maven / Gradle / Ivy

package com.ksyun.ks3.http;

import java.util.HashMap;
import java.util.Map;

import com.ksyun.ks3.config.Constants;
import com.ksyun.ks3.dto.Authorization;

/**
 * @author lijunwei[[email protected]]  
 * 
 * @date 2015年4月17日 下午5:43:06
 * 
 * @description 
 **/
public class WebServiceRequestConfig {
	private String userAgent = Constants.KS3_SDK_USER_AGENT;
	private Map extendHeaders = new HashMap();
	private String endpoint = null;

	public String getUserAgent() {
		return userAgent;
	}

	public void setUserAgent(String userAgent) {
		this.userAgent = userAgent;
	}

	public Map getExtendHeaders() {
		return extendHeaders;
	}

	public void setExtendHeaders(Map extendHeaders) {
		this.extendHeaders = extendHeaders;
	}

	public String getEndpoint() {
		return endpoint;
	}

	public void setEndpoint(String endpoint) {
		this.endpoint = endpoint;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy