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

org.jboss.weld.metadata.SystemPropertyActivationImpl Maven / Gradle / Ivy

There is a newer version: 6.0.0.Beta4
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy