本文整理汇总了Java中com.amazonaws.ClientConfiguration.setProxyUsername方法的典型用法代码示例。如果您正苦于以下问题:Java ClientConfiguration.setProxyUsername方法的具体用法?Java ClientConfiguration.setProxyUsername怎么用?Java ClientConfiguration.setProxyUsername使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.amazonaws.ClientConfiguration
的用法示例。
在下文中一共展示了ClientConfiguration.setProxyUsername方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createConnectionProperties
import com.amazonaws.ClientConfiguration; //导入方法依赖的package包/类
private ClientConfiguration createConnectionProperties() {
ClientConfiguration clientConfiguration = new ClientConfiguration();
Optional<HttpProxySettings.HttpProxy> proxyOptional = s3ConnectionProperties.getProxy();
if (proxyOptional.isPresent()) {
HttpProxySettings.HttpProxy proxy = s3ConnectionProperties.getProxy().get();
clientConfiguration.setProxyHost(proxy.host);
clientConfiguration.setProxyPort(proxy.port);
PasswordCredentials credentials = proxy.credentials;
if (credentials != null) {
clientConfiguration.setProxyUsername(credentials.getUsername());
clientConfiguration.setProxyPassword(credentials.getPassword());
}
}
Optional<Integer> maxErrorRetryCount = s3ConnectionProperties.getMaxErrorRetryCount();
if (maxErrorRetryCount.isPresent()) {
clientConfiguration.setMaxErrorRetry(maxErrorRetryCount.get());
}
return clientConfiguration;
}
示例2: load
import com.amazonaws.ClientConfiguration; //导入方法依赖的package包/类
@Override
public AmazonS3Client load(S3ClientKey clientKey) throws Exception {
logger.debug("Opening S3 client connection for {}", clientKey);
ClientConfiguration clientConf = new ClientConfiguration();
clientConf.setProtocol(clientKey.isSecure ? Protocol.HTTPS : Protocol.HTTP);
// Proxy settings (if configured)
clientConf.setProxyHost(clientKey.s3Config.get(Constants.PROXY_HOST));
if (clientKey.s3Config.get(Constants.PROXY_PORT) != null) {
clientConf.setProxyPort(Integer.valueOf(clientKey.s3Config.get(Constants.PROXY_PORT)));
}
clientConf.setProxyDomain(clientKey.s3Config.get(Constants.PROXY_DOMAIN));
clientConf.setProxyUsername(clientKey.s3Config.get(Constants.PROXY_USERNAME));
clientConf.setProxyPassword(clientKey.s3Config.get(Constants.PROXY_PASSWORD));
clientConf.setProxyWorkstation(clientKey.s3Config.get(Constants.PROXY_WORKSTATION));
if (clientKey.accessKey == null){
return new AmazonS3Client(new AnonymousAWSCredentialsProvider(), clientConf);
} else {
return new AmazonS3Client(new BasicAWSCredentials(clientKey.accessKey, clientKey.secretKey), clientConf);
}
}
示例3: getEC2
import com.amazonaws.ClientConfiguration; //导入方法依赖的package包/类
/**
* Return amazon interface
*
* @return AmazonEC2 client ec2
*/
AmazonEC2 getEC2() {
if (ec2 == null) {
String endpoint = ENDPOINT_PREFIX + ph.getRegion()
+ ENDPOINT_SUFFIX;
String proxyHost = System.getProperty(HTTPS_PROXY_HOST);
String proxyPort = System.getProperty(HTTPS_PROXY_PORT);
String proxyUser = System.getProperty(HTTPS_PROXY_USER);
String proxyPassword = System.getProperty(HTTPS_PROXY_PASSWORD);
int proxyPortInt = 0;
try {
proxyPortInt = Integer.parseInt(proxyPort);
} catch (NumberFormatException e) {
// ignore
}
ClientConfiguration clientConfiguration = new ClientConfiguration();
if (!isNonProxySet(endpoint)) {
if (proxyHost != null) {
clientConfiguration.setProxyHost(proxyHost);
}
if (proxyPortInt > 0) {
clientConfiguration.setProxyPort(proxyPortInt);
}
if (proxyUser != null && proxyUser.length() > 0) {
clientConfiguration.setProxyUsername(proxyUser);
}
if (proxyPassword != null && proxyPassword.length() > 0) {
clientConfiguration.setProxyPassword(proxyPassword);
}
}
ec2 = getEC2(credentialsProvider, clientConfiguration);
ec2.setEndpoint(endpoint);
}
return ec2;
}