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

com.ksyun.ks3.service.response.PutAdpResponse Maven / Gradle / Ivy

package com.ksyun.ks3.service.response;

import com.ksyun.ks3.dto.PutAdpResult;
import com.ksyun.ks3.http.HttpHeaders;

/**
 * @author lijunwei[[email protected]]  
 * 
 * @date 2015年2月2日 下午5:04:42
 * 
 * @description 添加处理结果持久化任务结果
 **/
public class PutAdpResponse extends Ks3WebServiceDefaultResponse{

	public int[] expectedStatus() {
		return new int[]{200};
	}

	@Override
	public void preHandle() {
		this.result = new PutAdpResult();
		result.setTaskId(super.getHeader(HttpHeaders.TaskId.toString()));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy