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-osgi-bundle Show documentation
Show all versions of weld-osgi-bundle Show documentation
Weld runtime packaged as an OSGi bundle
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();
}
}