org.jboss.weld.bootstrap.spi.Metadata 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.bootstrap.spi;
/**
* A piece of metadata, of type T
*
* @author Pete Muir
*
* @param the type of the metadata
*/
public interface Metadata
{
/**
* The metadata value
*/
public T getValue();
/**
* The location of the metadata, used in error and log messages
*/
public String getLocation();
}