1 /*
2 * Created on Nov 9, 2003
3 *
4 * Copyright neotechnologies.org
5 */
6 package org.neo.swarm.services;
7
8 import org.picocontainer.Startable;
9
10
11 /***
12 * Defines the set of standard methods for service methods.
13 *
14 * @see org.neo.swarm.services.AbstractService
15 * @author neil.avery
16 */
17 public interface Service extends Startable{
18 public String getName();
19 }