Fixing checkstyle violation
Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
parent
871abb5d5a
commit
19f2b99e0d
|
@ -65,12 +65,16 @@ public class TestSecurityAnnotationConversions
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ServletSecurity(value = @HttpConstraint(value = EmptyRoleSemantic.PERMIT, transportGuarantee = TransportGuarantee.CONFIDENTIAL, rolesAllowed =
|
@ServletSecurity(
|
||||||
{
|
value = @HttpConstraint(
|
||||||
"tom", "dick", "harry"
|
value = EmptyRoleSemantic.PERMIT,
|
||||||
}), httpMethodConstraints = {
|
transportGuarantee = TransportGuarantee.CONFIDENTIAL,
|
||||||
@HttpMethodConstraint(value = "GET", transportGuarantee = TransportGuarantee.CONFIDENTIAL)
|
rolesAllowed = {
|
||||||
})
|
"tom", "dick", "harry"
|
||||||
|
}),
|
||||||
|
httpMethodConstraints = {
|
||||||
|
@HttpMethodConstraint(value = "GET", transportGuarantee = TransportGuarantee.CONFIDENTIAL)
|
||||||
|
})
|
||||||
public static class Method2Servlet extends HttpServlet
|
public static class Method2Servlet extends HttpServlet
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue