
org.jboss.weld.bootstrap.spi.ClassAvailableActivation Maven / Gradle / Ivy
package org.jboss.weld.bootstrap.spi;
/**
*
* {@link ClassAvailableActivation} is a data structures representing the <if-class-available> element in Weld's
* extensions to beans.xml. See the XSD for Weld's extensions to beans.xml for details of the semantics of
* <if-class-available>.
*
*
* @author Pete Muir
* @see Filter
*/
public interface ClassAvailableActivation {
/**
* The name attribute
*
* @return the name attribute
*/
String getClassName();
/**
* Returns true if the filter is inverted (via {@code !}), false otherwise
*
* @return true if inverted, false otherwise
*/
boolean isInverted();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy