|
|
|
@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
|
|
|
|
|
/* |
|
|
|
|
* Copyright 2002-2012 the original author or authors. |
|
|
|
|
* Copyright 2002-2015 the original author or authors. |
|
|
|
|
* |
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
* you may not use this file except in compliance with the License. |
|
|
|
@ -42,41 +42,46 @@ public class ProxyFactoryBean implements FactoryBean<Proxy>, InitializingBean {
@@ -42,41 +42,46 @@ public class ProxyFactoryBean implements FactoryBean<Proxy>, InitializingBean {
|
|
|
|
|
|
|
|
|
|
private Proxy proxy; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Sets the proxy type. Defaults to {@link java.net.Proxy.Type#HTTP}. |
|
|
|
|
* Set the proxy type. |
|
|
|
|
* <p>Defaults to {@link java.net.Proxy.Type#HTTP}. |
|
|
|
|
*/ |
|
|
|
|
public void setType(Proxy.Type type) { |
|
|
|
|
this.type = type; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Sets the proxy host name. |
|
|
|
|
* Set the proxy host name. |
|
|
|
|
*/ |
|
|
|
|
public void setHostname(String hostname) { |
|
|
|
|
this.hostname = hostname; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Sets the proxy port. |
|
|
|
|
* Set the proxy port. |
|
|
|
|
*/ |
|
|
|
|
public void setPort(int port) { |
|
|
|
|
this.port = port; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void afterPropertiesSet() throws IllegalArgumentException { |
|
|
|
|
Assert.notNull(type, "'type' must not be null"); |
|
|
|
|
Assert.hasLength(hostname, "'hostname' must not be empty"); |
|
|
|
|
Assert.isTrue(port >= 0 && port <= 65535, "'port' out of range: " + port); |
|
|
|
|
|
|
|
|
|
SocketAddress socketAddress = new InetSocketAddress(hostname, port); |
|
|
|
|
this.proxy = new Proxy(type, socketAddress); |
|
|
|
|
|
|
|
|
|
Assert.notNull(this.type, "'type' must not be null"); |
|
|
|
|
Assert.hasLength(this.hostname, "'hostname' must not be empty"); |
|
|
|
|
if (this.port < 0 || this.port > 65535) { |
|
|
|
|
throw new IllegalArgumentException("'port' value out of range: " + this.port); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
SocketAddress socketAddress = new InetSocketAddress(this.hostname, this.port); |
|
|
|
|
this.proxy = new Proxy(this.type, socketAddress); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public Proxy getObject() { |
|
|
|
|
return proxy; |
|
|
|
|
return this.proxy; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -88,4 +93,5 @@ public class ProxyFactoryBean implements FactoryBean<Proxy>, InitializingBean {
@@ -88,4 +93,5 @@ public class ProxyFactoryBean implements FactoryBean<Proxy>, InitializingBean {
|
|
|
|
|
public boolean isSingleton() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|