Project

General

Profile

Download (1.04 KB) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
 * Copyright (C) 2009 EDIT European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 * 
6
 * The contents of this file are subject to the Mozilla Public License Version
7
 * 1.1 See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9

    
10
package eu.etaxonomy.cdm.remote.controller;
11

    
12
import org.springframework.beans.factory.annotation.Autowired;
13
import org.springframework.stereotype.Controller;
14
import org.springframework.web.bind.annotation.RequestMapping;
15

    
16
import eu.etaxonomy.cdm.api.service.ITaxonService;
17
import eu.etaxonomy.cdm.model.taxon.TaxonBase;
18

    
19
/**
20
 * @author a.kohlbecker
21
 * @date 20.03.2009
22
 */
23
@Controller
24
@RequestMapping(value = {"/*/taxon/"})
25
public class TaxonListController extends BaseListController<TaxonBase, ITaxonService> {
26

    
27
	/* (non-Javadoc)
28
	 * @see eu.etaxonomy.cdm.remote.controller.BaseListController#setService(eu.etaxonomy.cdm.api.service.IService)
29
	 */
30
	@Override
31
	@Autowired
32
	public void setService(ITaxonService service) {
33
		this.service = service; 
34
	}	
35
}
(24-24/26)