KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > samples > rmi > MyStatefulService


1 package com.tirsen.nanning.samples.rmi;
2
3 /**
4  * @remote
5  * @service
6  */

7 public interface MyStatefulService {
8     void modify(String JavaDoc value);
9
10     String JavaDoc value();
11 }
12
Popular Tags