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

« back to all changes in this revision

Viewing changes to src/main/org/jboss/remoting/samples/transporter/proxy/ICustomer.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.jboss.remoting.samples.transporter.proxy;
 
2
 
 
3
 
 
4
/**
 
5
 * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a>
 
6
 */
 
7
public interface ICustomer
 
8
{
 
9
   String getFirstName();
 
10
 
 
11
   void setFirstName(String firstName);
 
12
 
 
13
   String getLastName();
 
14
 
 
15
   void setLastName(String lastName);
 
16
 
 
17
   Address getAddr();
 
18
 
 
19
   void setAddr(Address addr);
 
20
 
 
21
   int getCustomerId();
 
22
 
 
23
   void setCustomerId(int customerId);
 
24
}