Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
7d7a2180
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7d7a2180
编写于
1月 09, 2014
作者:
W
weijun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8031395: Enhance LDAP processing
Reviewed-by: vinnie, alanb, skoivu, ahgross
上级
11790479
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
32 addition
and
3 deletion
+32
-3
src/share/classes/com/sun/jndi/ldap/LdapBindingEnumeration.java
...are/classes/com/sun/jndi/ldap/LdapBindingEnumeration.java
+16
-1
src/share/classes/com/sun/jndi/ldap/LdapSearchEnumeration.java
...hare/classes/com/sun/jndi/ldap/LdapSearchEnumeration.java
+16
-2
未找到文件。
src/share/classes/com/sun/jndi/ldap/LdapBindingEnumeration.java
浏览文件 @
7d7a2180
...
...
@@ -25,6 +25,10 @@
package
com.sun.jndi.ldap
;
import
java.security.AccessControlContext
;
import
java.security.AccessController
;
import
java.security.PrivilegedActionException
;
import
java.security.PrivilegedExceptionAction
;
import
java.util.Vector
;
import
javax.naming.*
;
import
javax.naming.directory.*
;
...
...
@@ -36,6 +40,8 @@ import com.sun.jndi.toolkit.ctx.Continuation;
final
class
LdapBindingEnumeration
extends
AbstractLdapNamingEnumeration
<
Binding
>
{
private
final
AccessControlContext
acc
=
AccessController
.
getContext
();
LdapBindingEnumeration
(
LdapCtx
homeCtx
,
LdapResult
answer
,
Name
remain
,
Continuation
cont
)
throws
NamingException
{
...
...
@@ -52,7 +58,16 @@ final class LdapBindingEnumeration
if
(
attrs
.
get
(
Obj
.
JAVA_ATTRIBUTES
[
Obj
.
CLASSNAME
])
!=
null
)
{
// serialized object or object reference
obj
=
Obj
.
decodeObject
(
attrs
);
try
{
obj
=
AccessController
.
doPrivileged
(
new
PrivilegedExceptionAction
<
Object
>()
{
@Override
public
Object
run
()
throws
NamingException
{
return
Obj
.
decodeObject
(
attrs
);
}
},
acc
);
}
catch
(
PrivilegedActionException
e
)
{
throw
(
NamingException
)
e
.
getException
();
}
}
if
(
obj
==
null
)
{
// DirContext object
...
...
src/share/classes/com/sun/jndi/ldap/LdapSearchEnumeration.java
浏览文件 @
7d7a2180
...
...
@@ -25,6 +25,10 @@
package
com.sun.jndi.ldap
;
import
java.security.AccessControlContext
;
import
java.security.AccessController
;
import
java.security.PrivilegedActionException
;
import
java.security.PrivilegedExceptionAction
;
import
java.util.Vector
;
import
javax.naming.*
;
import
javax.naming.directory.*
;
...
...
@@ -40,6 +44,8 @@ final class LdapSearchEnumeration
private
Name
startName
;
// prefix of names of search results
private
LdapCtx
.
SearchArgs
searchArgs
=
null
;
private
final
AccessControlContext
acc
=
AccessController
.
getContext
();
LdapSearchEnumeration
(
LdapCtx
homeCtx
,
LdapResult
search_results
,
String
starter
,
LdapCtx
.
SearchArgs
args
,
Continuation
cont
)
throws
NamingException
{
...
...
@@ -112,8 +118,16 @@ final class LdapSearchEnumeration
if
(
attrs
.
get
(
Obj
.
JAVA_ATTRIBUTES
[
Obj
.
CLASSNAME
])
!=
null
)
{
// Entry contains Java-object attributes (ser/ref object)
// serialized object or object reference
obj
=
Obj
.
decodeObject
(
attrs
);
try
{
obj
=
AccessController
.
doPrivileged
(
new
PrivilegedExceptionAction
<
Object
>()
{
@Override
public
Object
run
()
throws
NamingException
{
return
Obj
.
decodeObject
(
attrs
);
}
},
acc
);
}
catch
(
PrivilegedActionException
e
)
{
throw
(
NamingException
)
e
.
getException
();
}
}
if
(
obj
==
null
)
{
obj
=
new
LdapCtx
(
homeCtx
,
dn
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录