01: /*
02: * $Id: DummyActor.java 542 2005-10-05 15:38:43Z hengels $
03: * (c) Copyright 2004 con:cern development team.
04: *
05: * This file is part of con:cern (http://concern.org).
06: *
07: * con:cern is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU Lesser General Public License
09: * as published by the Free Software Foundation; either version 2.1
10: * of the License, or (at your option) any later version.
11: *
12: * Please see COPYING for the complete licence.
13: */
14: package org.concern.controller;
15:
16: import java.util.*;
17:
18: /**
19: * @author hengels
20: * @version $Revision: 542 $
21: */
22: public class DummyActor extends AbstractActor {
23: public Set getAssignees(Object subject, int level) {
24: return null; //To change body of implemented methods use File | Settings | File Templates.
25: }
26:
27: Integer dummy;
28:
29: public void setDummy(Integer dummy) {
30: this .dummy = dummy;
31: }
32:
33: public Integer getDummy() {
34: return dummy;
35: }
36: }
|