欢迎来到计算机考试题库网 考试题库官网
全部科目 > Java认证考试 > SCWCD(310-083)

单项选择题

Given this fragment in a servlet:
23.if(req.isUserInRole("Admin")) {
24.// do stuff
25.}
And the following fragment from the related Java EE deployment descriptor:
812.<security-role-ref>
813.<role-name>Admin</role-name>
814.<role-link>Administrator</role-link>
815.</security-role-ref>
900.<security-role>
901.<role-name>Admin</role-name>
902.<role-name>Administrator</role-name>
903.</security-role>
What is the result?()

    A.Line 24 can never be reached.
    B.The deployment descriptor is NOT valid.
    C.If line 24 executes, the user’s role will be Admin.
    D.If line 24 executes, the user’s role will be Administrator.
    E.If line 24 executes the user’s role will NOT be predictable.

点击查看答案

相关考题