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

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

There is a newer version: 3.0.0.Alpha1
Show 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
     * @return the metadata value
     */
    T getValue();

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy