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

org.jboss.weld.annotated.slim.BaseAnnotated Maven / Gradle / Ivy

Go to download

This jar bundles all the bits of Weld and CDI required for running in a Servlet container.

There is a newer version: 6.0.0.Beta4
Show newest version
package org.jboss.weld.annotated.slim;

import java.lang.reflect.Type;

import javax.enterprise.inject.spi.Annotated;

public abstract class BaseAnnotated implements Annotated {

    private final Type baseType;

    public BaseAnnotated(Type baseType) {
        this.baseType = baseType;
    }

    public Type getBaseType() {
        return baseType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy