
org.jboss.weld.metadata.SystemPropertyActivationImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-se-shaded Show documentation
Show all versions of weld-se-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for Java SE.
package org.jboss.weld.metadata;
import org.jboss.weld.bootstrap.spi.SystemPropertyActivation;
public class SystemPropertyActivationImpl implements SystemPropertyActivation {
private final String name;
private final String value;
public SystemPropertyActivationImpl(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy