/* * JBoss, Home of Professional Open Source * Copyright 2011 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt 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.infinispan.cdi.util.logging; import org.infinispan.manager.EmbeddedCacheManager; import org.jboss.logging.BasicLogger; import org.jboss.logging.Cause; import org.jboss.logging.LogMessage; import org.jboss.logging.Message; import org.jboss.logging.MessageLogger; import javax.cache.CacheException; import static org.jboss.logging.Logger.Level.INFO; /** * The JBoss Logging interface which defined the logging methods for the CDI integration. The id range for the CDI * integration is 17001-18000 * * @author Kevin Pollet <kevin.pollet@serli.com> (C) 2011 SERLI */ @MessageLogger(projectCode = "ISPN") public interface Log extends BasicLogger { @LogMessage(level = INFO) @Message(value = "Infinispan CDI extension version: %s", id = 17001) void version(String version); @LogMessage(level = INFO) @Message(value = "Configuration for cache '%s' has been defined in cache manager '%s'", id = 17002) void cacheConfigurationDefined(String cacheName, EmbeddedCacheManager cacheManager); @Message(value = "Method named '%s' is not annotated with CacheResult, CachePut, CacheRemoveEntry or CacheRemoveAll", id = 17003) IllegalArgumentException methodWithoutCacheAnnotation(String methodName); @Message(value = "Method named '%s' must have at least one parameter annotated with @CacheValue", id = 17004) CacheException cachePutMethodWithoutCacheValueParameter(String methodName); @Message(value = "Method named '%s' must have only one parameter annotated with @CacheValue", id = 17005) CacheException cachePutMethodWithMoreThanOneCacheValueParameter(String methodName); @Message(value = "Method named '%s' is annotated with CacheRemoveEntry but doesn't specify a cache name", id = 17006) CacheException cacheRemoveEntryMethodWithoutCacheName(String methodName); @Message(value = "Method named '%s' is annotated with CacheRemoveAll but doesn't specify a cache name", id = 17007) CacheException cacheRemoveAllMethodWithoutCacheName(String methodName); @Message(value = "Unable to instantiate CacheKeyGenerator with type '%s'", id = 17008) CacheException unableToInstantiateCacheKeyGenerator(Class<?> type, @Cause Throwable cause); @Message(value = "The provider implementation cannot be unwrapped to '%s'", id = 17009) IllegalArgumentException unableToUnwrapProviderImplementation(Class<?> type); }