~ubuntu-branches/ubuntu/wily/libjboss-remoting-java/wily

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.jboss.test.remoting.transporter.proxy;

/**
 * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a>
 */
public interface ICustomer
{
   String getFirstName();

   void setFirstName(String firstName);

   String getLastName();

   void setLastName(String lastName);

   Address getAddr();

   void setAddr(Address addr);

   int getCustomerId();

   void setCustomerId(int customerId);
}