本文整理汇总了Java中org.apache.hadoop.fs.swift.auth.entities.AccessToken类的典型用法代码示例。如果您正苦于以下问题:Java AccessToken类的具体用法?Java AccessToken怎么用?Java AccessToken使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AccessToken类属于org.apache.hadoop.fs.swift.auth.entities包,在下文中一共展示了AccessToken类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: extractResult
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
@Override
public AccessToken extractResult(AuthPostMethod method) throws IOException {
//initial check for failure codes leading to authentication failures
if (method.getStatusCode() == SC_BAD_REQUEST) {
throw new SwiftAuthenticationFailedException(
authenticationRequest.toString(), "POST", authUri, method);
}
if (authenticationRequest instanceof AuthenticationRequestV2) {
return extractResultV2(method);
} else {
return extractResultV3(method);
}
}
开发者ID:openstack,项目名称:sahara-extra,代码行数:17,代码来源:SwiftRestClient.java
示例2: setAuthDetails
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
/**
* Setter of authentication and endpoint details.
* Being synchronized guarantees that all three fields are set up together.
* It is up to the reader to read all three fields in their own
* synchronized block to be sure that they are all consistent.
*
* @param endpoint endpoint URI
* @param objectLocation object location URI
* @param authToken auth token
*/
private void setAuthDetails(URI endpoint,
URI objectLocation,
AccessToken authToken) {
if (LOG.isDebugEnabled()) {
LOG.debug(String.format("setAuth: endpoint=%s; objectURI=%s; token=%s",
endpoint, objectLocation, authToken));
}
synchronized (this) {
endpointURI = endpoint;
objectLocationURI = objectLocation;
token = authToken;
}
}
开发者ID:naver,项目名称:hadoop,代码行数:24,代码来源:SwiftRestClient.java
示例3: authenticate
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
/**
* Authenticate to Openstack Keystone
* As well as returning the access token, the member fields {@link #token},
* {@link #endpointURI} and {@link #objectLocationURI} are set up for re-use.
* <p>
* This method is re-entrant -if more than one thread attempts to authenticate
* neither will block -but the field values with have those of the last caller.
*
* @return authenticated access token
*/
public AccessToken authenticate() throws IOException {
final AuthenticationRequest authenticationRequest;
if (useKeystoneAuthentication) {
authenticationRequest = keystoneAuthRequest;
} else {
authenticationRequest = authRequest;
}
LOG.debug("started authentication");
return perform("authentication",
authUri,
new AuthenticationPost(authenticationRequest));
}
开发者ID:naver,项目名称:hadoop,代码行数:24,代码来源:SwiftRestClient.java
示例4: authenticate
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
/**
* Authenticate to Openstack Keystone
* As well as returning the access token, the member fields {@link #token},
* {@link #endpointURI} and {@link #objectLocationURI} are set up for re-use.
* <p/>
* This method is re-entrant -if more than one thread attempts to authenticate
* neither will block -but the field values with have those of the last caller.
* <p/>
*
* @return authenticated access token
*/
public AccessToken authenticate() throws IOException {
final AuthenticationRequest authenticationRequest;
if (useKeystoneAuthentication) {
authenticationRequest = keystoneAuthRequest;
} else {
authenticationRequest = authRequest;
}
LOG.debug("started authentication");
return perform("authentication",
authUri,
new AuthenticationPost(authenticationRequest));
}
开发者ID:Nextzero,项目名称:hadoop-2.6.0-cdh5.4.3,代码行数:25,代码来源:SwiftRestClient.java
示例5: getToken
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
/**
* token for Swift communication
*/
private synchronized AccessToken getToken() {
return token;
}
开发者ID:naver,项目名称:hadoop,代码行数:7,代码来源:SwiftRestClient.java
示例6: getToken
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
public AccessToken getToken() {
return token;
}
开发者ID:naver,项目名称:hadoop,代码行数:4,代码来源:AuthenticationResponse.java
示例7: setToken
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
public void setToken(AccessToken token) {
this.token = token;
}
开发者ID:naver,项目名称:hadoop,代码行数:4,代码来源:AuthenticationResponse.java
示例8: setAuthToken
import org.apache.hadoop.fs.swift.auth.entities.AccessToken; //导入依赖的package包/类
/**
* Set the auth key header of the method to the token ID supplied
*
* @param method method
* @param accessToken access token
* @throws SwiftInternalStateException if the client is not yet authenticated
*/
private void setAuthToken(HttpMethodBase method, AccessToken accessToken)
throws SwiftInternalStateException {
checkNotNull(accessToken,"Not authenticated");
method.addRequestHeader(HEADER_AUTH_KEY, accessToken.getId());
}
开发者ID:naver,项目名称:hadoop,代码行数:13,代码来源:SwiftRestClient.java
注:本文中的org.apache.hadoop.fs.swift.auth.entities.AccessToken类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论