# File lib/mu/api/netconfig.rb, line 7
  def initialize(host=ENV['MU_IP'], username=ENV['MU_ADMIN_USER'], password=ENV['MU_ADMIN_PASS'])
    @host = host
    @username  = username
    @password  = password
    @docroot = "/restlet/netconfig/"
    @response = nil
    @http = HttpHelper.new(@host, @username, @password, @docroot)
    @element = "" # sticky variable will hold a default element, the last element specified
    msg "Created Netconfig API object to :#{@host}", Logger::DEBUG
  end