Chapter 3. Service Management Framework Runtime 57
Figure 3-8 Naming the new class
14.As in Figure 3-8, enter the name Customer, check the box next to
Constructors from superclass and click Finish.
15.Into the Customer.java window that opens, copy the following in Example 3-2:
Example 3-2 Customer information
public final static String PENDING = "pending";
public final static String ARRIVED = "arrived";
public final static String EXITED = "exited";
protected String contractID = "";
protected String customerID = "";
protected String firstName = "";
protected String lastName = "";
protected String flightInfo = "";