Class OpenSSLConfCmd

java.lang.Object
org.apache.tomcat.util.net.openssl.OpenSSLConfCmd
All Implemented Interfaces:
Serializable

public class OpenSSLConfCmd extends Object implements Serializable
Represents an OpenSSL configuration command with a name-value pair.
See Also:
  • Field Details

  • Constructor Details

    • OpenSSLConfCmd

      public OpenSSLConfCmd()
      Constructs a new OpenSSLConfCmd with no name or value.
    • OpenSSLConfCmd

      public OpenSSLConfCmd(String name, String value)
      Constructs a new OpenSSLConfCmd with the given name and value.
      Parameters:
      name - The command name
      value - The command value
  • Method Details

    • getName

      public String getName()
      Returns the command name.
      Returns:
      The command name
    • setName

      public void setName(String name)
      Sets the command name.
      Parameters:
      name - The command name
    • getValue

      public String getValue()
      Returns the command value.
      Returns:
      The command value
    • setValue

      public void setValue(String value)
      Sets the command value.
      Parameters:
      value - The command value