/**
  * The constructor
  * @param $service the AssetOperationHandlerService object
  * @param $identifier the identifier object
  */
 public function __construct(aohs\AssetOperationHandlerService $service, \stdClass $identifier)
 {
     parent::__construct($service, $identifier);
     if (isset($this->getProperty()->structuredData)) {
         $this->processStructuredData();
     } else {
         $this->xhtml = $this->getProperty()->xhtml;
     }
 }