fixing #2866: NPE in DerivedUnitFacadeController.doGetDerivedUnitMedia
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / controller / AbstractListController.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.cdm.remote.controller;
11
12 import eu.etaxonomy.cdm.api.service.IService;
13 import eu.etaxonomy.cdm.model.common.CdmBase;
14
15 /**
16 * @author a.kohlbecker
17 * @date 24.03.2009
18 *
19 * @param <T>
20 * @param <SERVICE>
21 */
22 public abstract class AbstractListController<T extends CdmBase, SERVICE extends IService<T>> extends AbstractController {
23
24 protected SERVICE service;
25
26 public abstract void setService(SERVICE service);
27
28 }