JAAS 概述

JAAS 概述

 

JAAS 全称 Java Authentication and Authorization Service 即,Java认证和授权服务.实际上是一组API,

但JDK中包含一些默认实现.

 

主要类 LoginContext,另外需要一些辅助类,如普通类 Subject,Principal,Credential(凭证),

验证 LoginContext,LoginModule,CallBackHandler,Callback,

授权 Policy,AuthPermission,PrivateCredentialPermission

 

详情,参考: 

http://blog.sina.com.cn/s/blog_84feb25101015but.html JAAS详解(转) 

http://docs.oracle.com/javase/6/docs/technotes/guides/security/jaas/JAASRefGuide.html Reference Guide

 

 

你可能感兴趣的:(jaas)