Package org.infinispan.configuration.cache

Source Code of org.infinispan.configuration.cache.CompatibilityModeConfigurationBuilder

package org.infinispan.configuration.cache;

import org.infinispan.commons.configuration.Builder;
import org.infinispan.commons.marshall.Marshaller;
import org.infinispan.marshall.LegacyMarshallerAdapter;

/**
* Compatibility mode configuration builder
*
* @author Galder Zamarreño
* @since 5.3
*/
public class CompatibilityModeConfigurationBuilder
      extends AbstractConfigurationChildBuilder implements Builder<CompatibilityModeConfiguration> {

   private boolean enabled;
   private Marshaller marshaller;

   CompatibilityModeConfigurationBuilder(ConfigurationBuilder builder) {
      super(builder);
   }

   /**
    * Enables compatibility mode between embedded and different remote
    * endpoints (Hot Rod, Memcached, REST...etc).
    */
   public CompatibilityModeConfigurationBuilder enable() {
      enabled = true;
      return this;
   }

   /**
    * Disables compatibility mode between embedded.
    */
   public CompatibilityModeConfigurationBuilder disable() {
      enabled = false;
      return this;
   }

   /**
    * Sets whether compatibility mode is enabled or disabled.
    *
    * @param enabled if true, compatibility mode is enabled.  If false, it is disabled.
    */
   public CompatibilityModeConfigurationBuilder enabled(boolean enabled) {
      this.enabled = enabled;
      return this;
   }

   /**
    * Sets the marshaller instance to be used by the interoperability layer.
    */
   public CompatibilityModeConfigurationBuilder marshaller(Marshaller marshaller) {
      this.marshaller = marshaller;
      return this;
   }

   /**
    * Sets the marshaller instance to be used by the interoperability layer.
    */
   @Deprecated
   public CompatibilityModeConfigurationBuilder marshaller(org.infinispan.marshall.Marshaller marshaller) {
      this.marshaller = new LegacyMarshallerAdapter(marshaller);
      return this;
   }

   @Override
   public void validate() {
      // No-op
   }

   @Override
   public CompatibilityModeConfiguration create() {
      return new CompatibilityModeConfiguration(enabled, marshaller);
   }

   @Override
   public Builder<?> read(CompatibilityModeConfiguration template) {
      this.enabled = template.enabled();
      this.marshaller = template.marshaller();
      return this;
   }

}
TOP

Related Classes of org.infinispan.configuration.cache.CompatibilityModeConfigurationBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.