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

org.infinispan.cli.activators.DisabledActivator Maven / Gradle / Ivy

package org.infinispan.cli.activators;

import org.aesh.command.activator.CommandActivator;
import org.aesh.command.impl.internal.ParsedCommand;

/**
 * An activator which is used for marking commands which are not yet implemented
 *
 * @author Tristan Tarrant <[email protected]>
 * @since 10.0
 **/
public class DisabledActivator implements CommandActivator {
   @Override
   public boolean isActivated(ParsedCommand command) {
      return false;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy