本文整理匯總了Java中org.apache.http.auth.AuthScope.ANY屬性的典型用法代碼示例。如果您正苦於以下問題:Java AuthScope.ANY屬性的具體用法?Java AuthScope.ANY怎麽用?Java AuthScope.ANY使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.http.auth.AuthScope
的用法示例。
在下文中一共展示了AuthScope.ANY屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: setCredentials
public void setCredentials(AuthScope authScope, Credentials credentials) {
if (credentials == null) {
Log.d(LOG_TAG, "Provided credentials are null, not setting");
return;
}
CredentialsProvider credentialsProvider = this.httpClient.getCredentialsProvider();
if (authScope == null) {
authScope = AuthScope.ANY;
}
credentialsProvider.setCredentials(authScope, credentials);
}
示例2: setBasicAuth
/**
* Sets basic authentication for the request. Uses AuthScope.ANY. This is
* the same as setBasicAuth('username','password',AuthScope.ANY)
*
* @param username Basic Auth username
* @param password Basic Auth password
*/
public void setBasicAuth(String username, String password) {
AuthScope scope = AuthScope.ANY;
setBasicAuth(username, password, scope);
}
示例3: setBasicAuth
/**
* Sets basic authentication for the request. Uses AuthScope.ANY. This is the same as
* setBasicAuth('username','password',AuthScope.ANY)
*
* @param username Basic Auth username
* @param password Basic Auth password
*/
public void setBasicAuth(String username, String password) {
AuthScope scope = AuthScope.ANY;
setBasicAuth(username, password, scope);
}