本文整理汇总了Java中org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier.getMaxDate方法的典型用法代码示例。如果您正苦于以下问题:Java AbstractDelegationTokenIdentifier.getMaxDate方法的具体用法?Java AbstractDelegationTokenIdentifier.getMaxDate怎么用?Java AbstractDelegationTokenIdentifier.getMaxDate使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier
的用法示例。
在下文中一共展示了AbstractDelegationTokenIdentifier.getMaxDate方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: DelegationTokenToRenew
import org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier; //导入方法依赖的package包/类
public DelegationTokenToRenew(Collection<ApplicationId> applicationIds,
Token<?> token,
Configuration conf, long expirationDate, boolean shouldCancelAtEnd,
String user) {
this.token = token;
this.user = user;
if (token.getKind().equals(new Text("HDFS_DELEGATION_TOKEN"))) {
try {
AbstractDelegationTokenIdentifier identifier =
(AbstractDelegationTokenIdentifier) token.decodeIdentifier();
maxDate = identifier.getMaxDate();
} catch (IOException e) {
throw new YarnRuntimeException(e);
}
}
this.referringAppIds = Collections.synchronizedSet(
new HashSet<ApplicationId>(applicationIds));
this.conf = conf;
this.expirationDate = expirationDate;
this.timerTask = null;
this.shouldCancelAtEnd = shouldCancelAtEnd;
}
示例2: DelegationTokenToRenew
import org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier; //导入方法依赖的package包/类
public DelegationTokenToRenew(Collection<ApplicationId> applicationIds,
Token<?> token,
Configuration conf, long expirationDate, boolean shouldCancelAtEnd,
String user) {
this.token = token;
this.user = user;
if (token.getKind().equals(HDFS_DELEGATION_KIND)) {
try {
AbstractDelegationTokenIdentifier identifier =
(AbstractDelegationTokenIdentifier) token.decodeIdentifier();
maxDate = identifier.getMaxDate();
} catch (IOException e) {
throw new YarnRuntimeException(e);
}
}
this.referringAppIds = Collections.synchronizedSet(
new HashSet<ApplicationId>(applicationIds));
this.conf = conf;
this.expirationDate = expirationDate;
this.timerTask = null;
this.shouldCancelAtEnd = shouldCancelAtEnd;
}
示例3: DelegationTokenToRenew
import org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier; //导入方法依赖的package包/类
public DelegationTokenToRenew(ApplicationId jId, Token<?> token,
Configuration conf, long expirationDate, boolean shouldCancelAtEnd,
String user) {
this.token = token;
this.user = user;
if (token.getKind().equals(HDFS_DELEGATION_KIND)) {
try {
AbstractDelegationTokenIdentifier identifier =
(AbstractDelegationTokenIdentifier) token.decodeIdentifier();
maxDate = identifier.getMaxDate();
} catch (IOException e) {
throw new YarnRuntimeException(e);
}
}
this.applicationId = jId;
this.conf = conf;
this.expirationDate = expirationDate;
this.timerTask = null;
this.shouldCancelAtEnd = shouldCancelAtEnd;
}
示例4: getTokenExpiryTime
import org.apache.hadoop.security.token.delegation.AbstractDelegationTokenIdentifier; //导入方法依赖的package包/类
private long getTokenExpiryTime(Token token) throws IOException {
AbstractDelegationTokenIdentifier id =
(AbstractDelegationTokenIdentifier)token.decodeIdentifier();
return id.getMaxDate();
}