javax.cache.spi.AnnotationProvider Maven / Gradle / Ivy
The 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.
*
*
* @author Eric Dalquist
* @see javax.cache.Caching
* @since 1.0
*/
public interface AnnotationProvider {
/**
* Indicates whether annotations are supported by this implementation.
*
* @return true if the feature is supported
*/
boolean isSupported();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy