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

org.jboss.weld.bootstrap.spi.ClassAvailableActivation Maven / Gradle / Ivy

There is a newer version: 3.0.0.Alpha1
Show newest version
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 */ String getClassName(); boolean isInverted(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy