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

org.jspringbot.keyword.http.UserAgentBean Maven / Gradle / Ivy

package org.jspringbot.keyword.http;

import org.springframework.beans.factory.annotation.Autowired;

public class UserAgentBean {

	@Autowired
	protected HTTPHelper helper;

	public UserAgentBean(HTTPHelper helper) {
		this.helper = helper;
	}
	public void setUserAgentFlag(boolean userAgentFlag) {
		helper.setUserAgentFlag(userAgentFlag);
	}
	
	public void setUserAgentString(String userAgentString) {
		helper.setUserAgentString(userAgentString);
	}
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy