1 package test.crispy.example.service.corba;
2
3
4 /**
5 * test/crispy/example/service/corba/Customer.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from Echo.idl
8 * Donnerstag, 13. April 2006 19.25 Uhr CEST
9 */
10
11 public final class Customer implements org.omg.CORBA.portable.IDLEntity
12 {
13 private static final long serialVersionUID = -227603386191136639L;
14
15 public String firstName = null;
16 public String lastName = null;
17 public double salaryt = (double)0;
18
19 public Customer ()
20 {
21 }
22
23 public Customer (String _firstName, String _lastName, double _salaryt)
24 {
25 firstName = _firstName;
26 lastName = _lastName;
27 salaryt = _salaryt;
28 }
29
30 }