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

org.nico.seeker.plan.SeekerTrack Maven / Gradle / Ivy

The newest version!
package org.nico.seeker.plan;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import org.nico.seeker.dom.DomBean;
import org.nico.seeker.http.HttpMethod;

/** 
 * 定制轨迹
 * @author nico
 * @version 创建时间:2017年9月2日 下午8:05:12
 */
public class SeekerTrack {
	
	/*
	 * 路径
	 */
	private String uri;
	
	/*
	 * 请求类型
	 */
	private HttpMethod httpMethod;
	
	/*
	 * 请求参数
	 */
	private Map params;
	
	/*
	 * 具体轨迹信息
	 */
	private List trackBeans;

	/*
	 * 搜索器 
	 */
	private String searcher;
	
	/*
	 * 收获
	 */
	private List harvestCollect = new ArrayList();
	
	public String getUri() {
		return uri;
	}

	public void setUri(String uri) {
		this.uri = uri;
	}

	public HttpMethod getHttpMethod() {
		return httpMethod;
	}

	public void setHttpMethod(HttpMethod httpMethod) {
		this.httpMethod = httpMethod;
	}

	public Map getParams() {
		return params;
	}

	public void setParams(Map params) {
		this.params = params;
	}

	public List getTrackBeans() {
		return trackBeans;
	}

	public void setTrackBeans(List trackBeans) {
		this.trackBeans = trackBeans;
	}

	public String getSearcher() {
		return searcher;
	}

	public void setSearcher(String searcher) {
		this.searcher = searcher;
	}

	public List getHarvestCollect() {
		return harvestCollect;
	}

	public void setHarvestCollect(List harvestCollect) {
		this.harvestCollect = harvestCollect;
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy