/**
  * Retrieves object from proxy into cache, then initializes subresources.
  *
  * @param object|null $object The object
  *
  * @return null
  */
 private function _load($object = null)
 {
     $this->cache = $object !== null ? $object : $this->proxy->retrieveData($this->principal['sid']);
 }