Class EventBusCommand

    • Constructor Summary

      Constructors 
      Constructor Description
      EventBusCommand()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Server<?> asServer​(org.openqa.selenium.grid.config.Config initialConfig)  
      protected void execute​(org.openqa.selenium.grid.config.Config config)  
      java.util.Set<org.openqa.selenium.grid.config.Role> getConfigurableRoles()
      Allows a command to indicate that certain aspects are configurable.
      protected org.openqa.selenium.grid.config.Config getDefaultConfig()  
      java.lang.String getDescription()  
      java.util.Set<java.lang.Object> getFlagObjects()
      Allows the set of objects used for finding command-line flags to be augmented with default implementations.
      java.lang.String getName()  
      protected java.lang.String getSystemPropertiesConfigPrefix()  
      boolean isShown()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EventBusCommand

        public EventBusCommand()
    • Method Detail

      • getName

        public java.lang.String getName()
      • getDescription

        public java.lang.String getDescription()
      • getConfigurableRoles

        public java.util.Set<org.openqa.selenium.grid.config.Role> getConfigurableRoles()
        Description copied from interface: CliCommand
        Allows a command to indicate that certain aspects are configurable. Any roles that are exposed here will be matched against flag objects which implement HasRoles to allow configuration via command line flags.
      • isShown

        public boolean isShown()
      • getFlagObjects

        public java.util.Set<java.lang.Object> getFlagObjects()
        Description copied from interface: CliCommand
        Allows the set of objects used for finding command-line flags to be augmented with default implementations.
      • asServer

        public Server<?> asServer​(org.openqa.selenium.grid.config.Config initialConfig)
      • execute

        protected void execute​(org.openqa.selenium.grid.config.Config config)
        Specified by:
        execute in class TemplateGridCommand