/**
  * Entry point to get an instance of a service 
  * by it's short name.
  *
  * @access public
  * @author Joel Bout, <*****@*****.**>
  * @deprecated
  * @param  string serviceName The name of the service you want to retrieve. You can set the complete class name, the interface name or only the ressource name managed by the service.
  * @return tao_models_classes_GenerisService
  */
 public static function get($serviceName)
 {
     $returnValue = null;
     $returnValue = tao_models_classes_Service::getServiceByName($serviceName);
     return $returnValue;
 }