Subversion Repositories eFlore/Applications.del

Rev

Rev 702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 702 Rev 1793
Line 1... Line 1...
1
<?php
1
<?php
-
 
2
/**
-
 
3
 * Classe contenant seulement le résultat d'un service.
-
 
4
 *
-
 
5
 * @category DEL
-
 
6
 * @package Services
-
 
7
 * @subpackage Bibliotheque
-
 
8
 * @version 0.1
-
 
9
 * @author Mathias CHOUET <mathias@tela-botanica.org>
-
 
10
 * @author Jean-Pascal MILCENT <jpm@tela-botanica.org>
-
 
11
 * @author Aurelien PERONNET <aurelien@tela-botanica.org>
-
 
12
 * @license GPL v3 <http://www.gnu.org/licenses/gpl.txt>
-
 
13
 * @license CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
-
 
14
 * @copyright 1999-2014 Tela Botanica <accueil@tela-botanica.org>
-
 
15
 */
2
class ResultatService {
16
class ResultatService {
3
	public $mime = 'application/json';
17
	public $mime = 'application/json';
4
	public $encodage = 'utf-8';
18
	public $encodage = 'utf-8';
5
	public $corps = '';
19
	public $corps = '';
6
}
-
 
7
?>
-
 
8
20
}
-
 
21
9
22