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

org.jboss.weld.bootstrap.spi.Metadata Maven / Gradle / Ivy

The newest version!
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
     */
    T getValue();

    /**
     * The location of the metadata, used in error and log messages
     */
    String getLocation();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy