public function addApplicationSupport(ApplicationSupportedEntity $supportedServerEntity = null)
 {
     $dataPoster = new Data_Poster();
     $postParams = array();
     if ($supportedServerEntity instanceof ApplicationSupportedEntity) {
         $postParams = $supportedServerEntity->getArrayCopy();
     }
     $data = $dataPoster->postData($this->Interface, $postParams);
     return $data;
 }