
org.jboss.weld.metadata.MetadataImpl 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.Metadata;
public class MetadataImpl implements Metadata {
private final String location;
private final T value;
public MetadataImpl(T value, String location) {
this.location = location;
this.value = value;
}
public String getLocation() {
return location;
}
public T getValue() {
return value;
}
@Override
public String toString() {
return getLocation();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy