blob: 019d38cc3c6e9cddaefd3b2900d9e1f53b799834 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hisashi MIYASHITA - initial API and implementation
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.util.httpproxy;
public class ExternalProxyConfig {
private boolean externalProxyFlag = false;
private String externalProxyHost = "localhost";
private int externalProxyPort = 8080;
public ExternalProxyConfig() {
}
public boolean getExternalProxyFlag() {
return externalProxyFlag;
}
public void setExternalProxyFlag(boolean flag) {
this.externalProxyFlag = flag;
}
public String getExternalProxyHost() {
return externalProxyHost;
}
public int getExternalProxyPort() {
return externalProxyPort;
}
public void setExternalProxy(String host, int port) {
this.externalProxyHost = host;
this.externalProxyPort = port;
}
}