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: 6.0.0.Beta4
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
    */
   public T getValue();
   
   /**
    * The location of the metadata, used in error and log messages
    */
   public String getLocation();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy