Package com.hazelcast.config

Examples of com.hazelcast.config.SecurityInterceptorConfig


    @Test
    public void testSecurityInterceptors() {
        final List<SecurityInterceptorConfig> interceptorConfigs = securityConfig.getSecurityInterceptorConfigs();
        assertEquals(1, interceptorConfigs.size());
        final SecurityInterceptorConfig interceptorConfig = interceptorConfigs.get(0);
        final String className = interceptorConfig.getClassName();
        assertEquals(DummySecurityInterceptor.class.getName(), className);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.config.SecurityInterceptorConfig

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.