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

org.infinispan.commons.configuration.attributes.AttributeInitializer Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commons.configuration.attributes;

/**
 * AttributeInitializer. Provides a way to initialize an attribute's value, whenever this needs to be done at Attribute construction time.
 * This is usually needed when the value is a mutable object.
 *
 * @author Tristan Tarrant
 * @since 7.2
 */
public interface AttributeInitializer {
   T initialize();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy