blob: 5643e853007d53b059bc2f047b7d73404879f8fa [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.http;
import java.io.Serializable;
/**
* @version
*/
public class HttpConfiguration implements Serializable {
private AuthMethod authMethod;
private String authUsername;
private String authPassword;
private String authDomain;
private String authHost;
private AuthMethod proxyAuthMethod;
private String proxyAuthUsername;
private String proxyAuthPassword;
private String proxyAuthDomain;
private String proxyAuthHost;
private String proxyHost;
private int proxyPort;
private String authMethodPriority;
public String getAuthUsername() {
return authUsername;
}
public void setAuthUsername(String authUsername) {
this.authUsername = authUsername;
}
public String getAuthPassword() {
return authPassword;
}
public void setAuthPassword(String authPassword) {
this.authPassword = authPassword;
}
public String getAuthDomain() {
return authDomain;
}
public void setAuthDomain(String authDomain) {
this.authDomain = authDomain;
}
public String getAuthHost() {
return authHost;
}
public void setAuthHost(String authHost) {
this.authHost = authHost;
}
public String getProxyAuthUsername() {
return proxyAuthUsername;
}
public void setProxyAuthUsername(String proxyAuthUsername) {
this.proxyAuthUsername = proxyAuthUsername;
}
public String getProxyAuthPassword() {
return proxyAuthPassword;
}
public void setProxyAuthPassword(String proxyAuthPassword) {
this.proxyAuthPassword = proxyAuthPassword;
}
public String getProxyAuthDomain() {
return proxyAuthDomain;
}
public void setProxyAuthDomain(String proxyAuthDomain) {
this.proxyAuthDomain = proxyAuthDomain;
}
public String getProxyAuthHost() {
return proxyAuthHost;
}
public void setProxyAuthHost(String proxyAuthHost) {
this.proxyAuthHost = proxyAuthHost;
}
public AuthMethod getAuthMethod() {
return authMethod;
}
public void setAuthMethod(AuthMethod authMethod) {
this.authMethod = authMethod;
}
public AuthMethod getProxyAuthMethod() {
return proxyAuthMethod;
}
public void setProxyAuthMethod(AuthMethod proxyAuthMethod) {
this.proxyAuthMethod = proxyAuthMethod;
}
public String getProxyHost() {
return proxyHost;
}
public void setProxyHost(String proxyHost) {
this.proxyHost = proxyHost;
}
public int getProxyPort() {
return proxyPort;
}
public void setProxyPort(int proxyPort) {
this.proxyPort = proxyPort;
}
public String getAuthMethodPriority() {
return authMethodPriority;
}
public void setAuthMethodPriority(String authMethodPriority) {
this.authMethodPriority = authMethodPriority;
}
}