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

org.infinispan.cli.commands.server.Replace Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.cli.commands.server;

import java.util.Arrays;
import java.util.List;
import org.kohsuke.MetaInfServices;

@MetaInfServices(org.infinispan.cli.commands.Command.class)
public class Replace extends AbstractServerCommand {
   private final static List OPTIONS = Arrays.asList("--codec=");

   @Override
   public String getName() {
      return "replace";
   }

   @Override
   public List getOptions() {
      return OPTIONS;
   }

   @Override
   public int nesting() {
      return 0;
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy