1 /* 2 * This program is free software; you can redistribute it and/or 3 * modify it under the terms of the GNU General Public License 4 * as published by the Free Software Foundation; either version 2 5 * of the License, or (at your option) any later version. 6 * 7 * This program is distributed in the hope that it will be useful, 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 * GNU General Public License for more details. 11 * 12 * Full GNU GPL license terms : http://www.fsf.org/licenses/gpl.txt 13 * 14 * Package : net.wmind.iky.service 15 * Created on Mar 21, 2004 16 * Author : mchaplin@users.sourceforge.net 17 * 18 */ 19 package net.mchaplin.ioc.service; 20 21 import net.mchaplin.ioc.component.DefaultComponent; 22 23 /*** 24 * Core abstract class used by internal 25 * services. 26 * 27 * @author mchaplin@users.sourceforge.net 28 */ 29 public abstract class Service extends DefaultComponent implements ServiceI { 30 31 /*** 32 * @see net.mchaplin.ioc.service.ServiceI#getState() 33 */ 34 public String getState() { 35 return null; 36 } 37 }