Class ExtraDhcpOption

java.lang.Object
org.jclouds.openstack.neutron.v2.domain.ExtraDhcpOption

public class ExtraDhcpOption extends Object
This is used to provide additional DHCP-related options to Subnet. This is based on a neutron extension. For example PXE boot options to DHCP clients can be specified (e.g. tftp-server, server-ip-address, bootfile-name)
See Also:
  • Field Details

    • id

      protected final String id
    • optionName

      @Named("opt_name") protected final String optionName
    • optionValue

      @Named("opt_value") protected final String optionValue
  • Constructor Details

  • Method Details

    • getId

      @Nullable public String getId()
      Returns:
      the id of the ExtraDhcpOption
    • getOptionName

      @Nullable public String getOptionName()
      Returns:
      the optionName of the ExtraDhcpOption
    • getOptionValue

      @Nullable public String getOptionValue()
      Returns:
      the optionValue of the ExtraDhcpOption
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • string

      protected com.google.common.base.MoreObjects.ToStringHelper string()
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static ExtraDhcpOption.Builder builder()
      Returns:
      the Builder for ExtraDhcpOption
    • toBuilder

      public ExtraDhcpOption.Builder toBuilder()
      Gets a Builder configured as this object.