Package org.apache.shiro.util

Examples of org.apache.shiro.util.Destroyable


public class DestroyableInjectionListenerTest {
    @Test
    public void testAfterInjection() throws Exception {
        DestroyableInjectionListener.DestroyableRegistry registry = createMock(DestroyableInjectionListener.DestroyableRegistry.class);
        Destroyable destroyable = createMock(Destroyable.class);

        registry.add(destroyable);

        replay(registry, destroyable);
View Full Code Here

TOP

Related Classes of org.apache.shiro.util.Destroyable

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.