-
- All Superinterfaces:
-
Cloneable
,GSSCredential
public interface ExtendedGSSCredential extends GSSCredential
扩展的GSSCredential接口,用于支持未定义的附加功能org.ietf.jgss.GSSCredential
。- 从以下版本开始:
- 1.8
-
-
Field Summary
-
Fields inherited from interface org.ietf.jgss.GSSCredential
ACCEPT_ONLY, DEFAULT_LIFETIME, INDEFINITE_LIFETIME, INITIATE_AND_ACCEPT, INITIATE_ONLY
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 GSSCredential
impersonate(GSSName name)
假冒一名校长-
Methods inherited from interface org.ietf.jgss.GSSCredential
add, dispose, equals, getMechs, getName, getName, getRemainingAcceptLifetime, getRemainingInitLifetime, getRemainingLifetime, getUsage, getUsage, hashCode
-
-
-
-
方法详细信息
-
impersonate
GSSCredential impersonate(GSSName name) throws GSSException
假冒一名校长 在Kerberos中,可以使用Microsoft S4U2self扩展来实现。如果模拟失败,将抛出A
GSSException.NO_CRED
。 如果此凭证对象不可用模拟方法,则会抛出GSSException.FAILURE
。- 参数
-
name
- 假冒的校长的姓名 - 结果
- 该委托人的凭证
- 异常
-
GSSException
- 包含以下主要错误代码:GSSException.NO_CRED
GSSException.FAILURE
-
-