01: package demo.hello;
02:
03: import org.omg.CORBA.*;
04:
05: public class GoodDayImpl extends GoodDayPOA {
06: private String location;
07:
08: public GoodDayImpl(String location) {
09: this .location = location;
10: }
11:
12: public String hello_simple() {
13: return "Hello World, from " + location;
14: }
15:
16: public String hello_wide(String wide_msg) {
17: System.out.println("The message is: " + wide_msg);
18: return "Hello Wörld, from ö 1 2 3 0 *&^%$#@!@";
19: }
20:
21: }
|