Subversion Repositories Applications.framework

Rev

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

Rev 361 Rev 362
Line 12... Line 12...
12
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
12
 * @author		Jean-Pascal MILCENT <jpm@tela-botanica.org>
13
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
13
 * @copyright	Copyright (c) 2010, Tela Botanica (accueil@tela-botanica.org)
14
 * @license	GPL v3 <http://www.gnu.org/licenses/gpl.txt>
14
 * @license	GPL v3 <http://www.gnu.org/licenses/gpl.txt>
15
 * @license	CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
15
 * @license	CECILL v2 <http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt>
16
 * @since 		0.3
16
 * @since 		0.3
17
 * @version	$Id: RestService.php 361 2011-09-01 13:37:00Z jpm $
17
 * @version	$Id: RestService.php 362 2011-09-01 13:43:23Z jpm $
18
 * @link		/doc/framework/
18
 * @link		/doc/framework/
19
 */
19
 */
20
abstract class RestService {
20
abstract class RestService {
Line 21... Line 21...
21
	
21
	
Line 27... Line 27...
27
	
27
	
28
	/** Objet Rest Client. */
28
	/** Objet Rest Client. */
Line 29... Line 29...
29
	private $RestClient = null;
29
	private $RestClient = null;
30
	
30
	
-
 
31
	public function __construct($config) {
31
	public function __construct($config) {
32
		$this->config = $config;
Line 32... Line 33...
32
		$this->config = $config;		
33
		$this->bdd = new Bdd();
33
	}
34
	}
34
	
35