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

org.infinispan.client.hotrod.configuration.ClusterConfiguration Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.client.hotrod.configuration;

import java.util.List;

/**
 * @since 8.1
 */
public class ClusterConfiguration {
   private final List serverCluster;
   private final String clusterName;

   public ClusterConfiguration(List serverCluster, String clusterName) {
      this.serverCluster = serverCluster;
      this.clusterName = clusterName;
   }

   public List getCluster() {
      return serverCluster;
   }

   public String getClusterName() {
      return clusterName;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy