Contact.java Sample
This topic inludes the source code for the Contact.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 Contact implements java.io.Serializable
04 {
05 public String street;
06 public String city;
07 public String state;
08 public String zip;
09 public String phone;
10
11 public Contact() {}
12 }
|