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

org.jboss.as.weld.injection.DefaultComponentSupport Maven / Gradle / Ivy

There is a newer version: 33.0.2.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.jboss.as.weld.injection;

import org.jboss.as.ee.component.ComponentDescription;
import org.jboss.as.web.common.WebComponentDescription;
import org.jboss.as.weld.spi.ComponentSupport;

/**
 *
 * @author Martin Kouba
 */
public class DefaultComponentSupport implements ComponentSupport {

    @Override
    public boolean isProcessing(ComponentDescription componentDescription) {
        return componentDescription instanceof WebComponentDescription;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy