1 /*
2 * Project : CIM-Server
3 * Package : net.wmind.cim.service
4 * Author : matthieu chaplin
5 *
6 * Created on May 29, 2004
7 *
8 */
9 package net.mchaplin.ioc.service;
10
11
12 /***
13 * Interface implemented
14 * by rmi services
15 *
16 * @author matthieu
17 */
18 public interface ServiceI {
19
20 /***
21 * Returns a service state
22 * unimplemented.
23 *
24 * @return
25 */
26 String getState();
27 }