Adaptor.prototype.getFullState = function(callback) {
  this.hueApi.getFullState(function(err, config) {
    callback(err, config);
  });
};