Person.java Sample
This topic inludes the source code for the Person.java Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebServices/proxy/register/
Sample Source Code
01 package proxy.register;
02
03 public class Person implements java.io.Serializable
04 {
05 public String name;
06 public Contact home;
07 public Contact work;
08
09 public Person() {}
10 }
|