KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.tirsen.nanning.samples.rmi;
2
3 public class MyStatefulServiceImpl implements MyStatefulService {
4     private String JavaDoc value;
5
6     public void modify(String JavaDoc value) {
7         this.value = value;
8     }
9
10     public String JavaDoc value() {
11         return value;
12     }
13 }
14
Popular Tags