![JAR search and dependency download from the Maven repository](/logo.png)
org.jboss.weld.bootstrap.spi.SystemPropertyActivation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
package org.jboss.weld.bootstrap.spi;
/**
*
* {@link SystemPropertyActivation} is a data structures representing the <if-system-property> 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-system-property>.
*
*
* @author Pete Muir
* @see Filter
*/
public interface SystemPropertyActivation {
/**
* The name attribute
* @return the name attribute
*/
String getName();
/**
* The value attribute
* @return the name attribute
*/
String getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy