/**
         * Instantiates a new dhcp config options.
         *
         * @param configOptions the config options
         */
        public DhcpV4ConfigOptions(v4ConfigOptionsType configOptions)
        {
            if (configOptions != null)
            {
                this.configOptions = configOptions;
            }
            else
            {
                this.configOptions = new v4ConfigOptionsType();
            }

            InitDhcpV4OptionMap();
        }
 /**
  * Sets the config options.
  *
  * @param configOptions the new config options
  */
 public void FetV4ConfigOptions(v4ConfigOptionsType configOptions)
 {
     this.configOptions = configOptions;
     // reset the option map
     InitDhcpV4OptionMap();
 }