本文整理匯總了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;
}