01: /* ****************************************************************************
02: * ReturnPOJOExample.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09: package examples;
10:
11: /**
12: * Example that returns only public members. See
13: * examples/javarpc/returnpojo.lzx.
14: */
15: public class ReturnPOJOExample {
16:
17: public static MyPOJO getPOJO() {
18: return new MyPOJO();
19: }
20:
21: }
|