PlayerRecord.java Sample

This topic inludes the source code for the PlayerRecord.java Sample.

Sample Location

This sample is located in the following directory in your WebLogic Workshop installation:

BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebServices/database/lucky_number_db/

Sample Source Code


01 package database.lucky_number_db; 
02 
03 /**
04  <p>Utility class used in the LuckyNumberDB.jcx and LuckyNumber.jws samples.
05  * The names of the members of this class must match the column names and types
06  * in the database table, with the exception of case.</p>
07  */
08 public class PlayerRecord
09 {
10     public String name;
11     public int number;
12 }