/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.ee.injection.resource.infinispan; import javax.annotation.ManagedBean; import javax.annotation.PostConstruct; import javax.annotation.Resource; import javax.naming.InitialContext; import javax.naming.NamingException; import org.junit.Assert; import org.infinispan.Cache; import org.infinispan.manager.CacheContainer; /** * @author Paul Ferraro */ @ManagedBean("infinispan") public class InfinispanManagedBean { private static final String CONTAINER_JNDI_NAME = "java:jboss/infinispan/container/server"; private static final String CACHE_JNDI_NAME = "java:jboss/infinispan/cache/server/default"; @Resource(lookup = CONTAINER_JNDI_NAME) private CacheContainer container; @Resource(lookup = CACHE_JNDI_NAME) private Cache<Integer, Object> cache; @PostConstruct public void start() { assert this.cache.getCacheManager().equals(this.container); assert this.cache.getName().equals(this.container.getCache().getName()); } public void test() { try { // Test simple value this.cache.put(1, "test"); // Test custom type this.cache.put(2, new Bean()); } catch (Exception e) { throw new RuntimeException(e); } try { // Make sure we can also perform a vanilla jndi lookup of container Object result = new InitialContext().lookup(CONTAINER_JNDI_NAME); Assert.assertSame(this.container, result); // Make sure we can also perform a vanilla jndi lookup of cache result = new InitialContext().lookup(CACHE_JNDI_NAME); Assert.assertSame(this.cache, result); } catch (NamingException e) { Assert.fail(e.getMessage()); } } public static class Bean implements java.io.Serializable { private static final long serialVersionUID = -7265704761812104791L; } }