Package hudson.security

Examples of hudson.security.ProjectMatrixAuthorizationStrategy$ConverterImpl


    /**
     * Test that project level permissions apply to child configurations as well.
     */
    @Bug(9293)
    public void testConfigurationACL() throws Exception {
        hudson.setAuthorizationStrategy(new ProjectMatrixAuthorizationStrategy());
        MatrixProject mp = createMatrixProject();
        mp.setAxes(new AxisList(new Axis("foo", "a", "b")));
        MatrixConfiguration mc = mp.getItem("foo=a");
        assertNotNull(mc);
        SecurityContextHolder.clearContext();
View Full Code Here

TOP

Related Classes of hudson.security.ProjectMatrixAuthorizationStrategy$ConverterImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.