Package org.apache.shiro.web.filter.authc

Examples of org.apache.shiro.web.filter.authc.UserFilter


        FilterChain chain = list.proxy(mock);
        assertNotNull(chain);
        assertNotSame(mock, chain);

        Filter singleFilter = new SslFilter();
        List<? extends Filter> multipleFilters = CollectionUtils.asList(new PortFilter(), new UserFilter());

        list.add(0, singleFilter);
        assertEquals(2, list.size());
        assertTrue(list.get(0) instanceof SslFilter);
        assertTrue(Arrays.equals(list.toArray(), new Object[]{singleFilter, filter}));
View Full Code Here

TOP

Related Classes of org.apache.shiro.web.filter.authc.UserFilter

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.