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

org.infinispan.commons.configuration.Builder Maven / Gradle / Ivy

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

import org.infinispan.commons.configuration.attributes.AttributeSet;

/**
 * Builder. Validates and constructs a configuration bean
 *
 * @author Tristan Tarrant
 * @since 5.2
 */
public interface Builder {
   default void reset() {
      attributes().reset();
   }

   /**
    * Validate the data in this builder before building the configuration bean
    */
   default void validate() {}

   /**
    * Create the configuration bean
    *
    * @return
    */
   T create();

   /**
    * Reads the configuration from an already created configuration bean into this builder.
    * Returns an appropriate builder to allow fluent configuration
    *
    * @param template the configuration from which to "clone" this config if needed.
    * @param combine the way attributes and children of this instance and the template should be combined.
    */
   Builder read(T template, Combine combine);

   default Builder read(T template) {
      return read(template, Combine.DEFAULT);
   }

   AttributeSet attributes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy