/**
  * Short description of method buildFileSystemComponent
  *
  * @access public
  * @author Jerome Bogaerts, <*****@*****.**>
  * @param  string location
  * @param  string expectedRights
  * @param  boolean optional
  * @return common_configuration_FileSystemComponent
  */
 public static function buildFileSystemComponent($location, $expectedRights, $optional = false)
 {
     $returnValue = null;
     $returnValue = new common_configuration_FileSystemComponent($location, $expectedRights, $optional = false);
     self::incrementFileSystemCount();
     $returnValue->setName('FileSystemComponentCheck_' . self::getFileSystemCount());
     return $returnValue;
 }