本文整理汇总了Java中org.openid4java.association.AssociationSessionType.getSessionType方法的典型用法代码示例。如果您正苦于以下问题:Java AssociationSessionType.getSessionType方法的具体用法?Java AssociationSessionType.getSessionType怎么用?Java AssociationSessionType.getSessionType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openid4java.association.AssociationSessionType
的用法示例。
在下文中一共展示了AssociationSessionType.getSessionType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setPrefAssocSessEnc
import org.openid4java.association.AssociationSessionType; //导入方法依赖的package包/类
/**
* Sets the preferred association / session type.
*
* @see AssociationSessionType
*/
public void setPrefAssocSessEnc(AssociationSessionType type)
throws ServerException
{
if (! Association.isHmacSupported(type.getAssociationType()) ||
! DiffieHellmanSession.isDhSupported(type) )
throw new ServerException("Unsupported association / session type: "
+ type.getSessionType() + " : " + type.getAssociationType());
if (_minAssocSessEnc.isBetter(type) )
throw new ServerException(
"Minimum encryption settings cannot be better than the preferred");
this._prefAssocSessEnc = type;
}