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

org.infinispan.commands.AbstractTopologyAffectedCommand Maven / Gradle / Ivy

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

/**
 * Base class for commands that carry topology id.
 *
 * @author Galder Zamarreño
 * @since 5.1
 */
public abstract class AbstractTopologyAffectedCommand extends AbstractFlagAffectedCommand implements TopologyAffectedCommand {

   private int topologyId = -1;

   @Override
   public int getTopologyId() {
      return topologyId;
   }

   @Override
   public void setTopologyId(int topologyId) {
      this.topologyId = topologyId;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy