1 package org.cateproject.controller.editor;
2
3 import org.springframework.beans.factory.annotation.Autowired;
4
5 import eu.etaxonomy.cdm.api.service.IAgentService;
6 import eu.etaxonomy.cdm.model.agent.AgentBase;
7
8
9 public class AgentBasePropertyEditor extends IdentifiableEntityPropertyEditor<AgentBase,IAgentService> {
10
11 public AgentBasePropertyEditor(Class<? extends AgentBase> type) {
12 super(type);
13 }
14
15 public AgentBasePropertyEditor(Class<? extends AgentBase> type, IAgentService service) {
16 super(type,service);
17 }
18
19 @Autowired
20 @Override
21 public void setService(IAgentService agentService) {
22 super.setService(service);
23 }
24 }