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

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

There is a newer version: 6.0.0.Beta4
Show newest version
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 */ public String getName(); /** * The value attribute */ public String getValue(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy