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

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

There is a newer version: 3.0.0.Alpha1
Show newest version
package org.jboss.weld.metadata;

import org.jboss.weld.bootstrap.spi.ClassAvailableActivation;

public class ClassAvailableActivationImpl implements ClassAvailableActivation {

    private final String className;
    private final boolean inverted;

    public ClassAvailableActivationImpl(String className, boolean inverted) {
        this.className = className;
        this.inverted = inverted;
    }

    public String getClassName() {
        return className;
    }

    @Override
    public boolean isInverted() {
        return inverted;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy