All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.cache.spi.AnnotationProvider Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
/**
 *  Copyright (c) 2011 Terracotta, Inc.
 *  Copyright (c) 2011 Oracle and/or its affiliates.
 *
 *  All rights reserved. Use is subject to license terms.
 */

package javax.cache.spi;


/**
 * Interface that should be implemented by a cache annotations provider.
 *
 * It is invoked by the {@link javax.cache.Caching} class to determine
 * which annotations related features are supported.
 * 

* An implementation of this interface must have a public no-arg constructor. *

* @see javax.cache.Caching * * @author Eric Dalquist * @since 1.0 */ public interface AnnotationProvider { /** * Indicates whether annotations are supported by this implementation. * * @return true if the feature is supported */ boolean isSupported(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy