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

« back to all changes in this revision

Viewing changes to src/main/org/jboss/remoting/samples/chat/client/ChatMessage.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
/*
 
2
 * Created on Mar 21, 2005
 
3
 *
 
4
 * TODO To change the template for this generated file go to
 
5
 * Window - Preferences - Java - Code Style - Code Templates
 
6
 */
 
7
package org.jboss.remoting.samples.chat.client;
 
8
 
 
9
import java.io.Serializable;
 
10
 
 
11
/**
 
12
 * @author sigal
 
13
 *
 
14
 * TODO To change the template for this generated type comment go to
 
15
 * Window - Preferences - Java - Code Style - Code Templates
 
16
 */
 
17
public class ChatMessage implements Serializable 
 
18
{
 
19
        public ChatMessage(String chatId, String message)
 
20
        {
 
21
                super();
 
22
                this.chatId = chatId;
 
23
                this.message = message;
 
24
        }
 
25
        
 
26
        public ChatMessage()
 
27
        {
 
28
        }
 
29
 
 
30
    
 
31
    private String chatId;
 
32
    public String get_chatId() { return chatId; }
 
33
    public void set_chatId(String chatId) { this.chatId = chatId; }
 
34
 
 
35
    private String message;
 
36
    public String get_message() { return message; }
 
37
    public void set_message(String message) { this.message = message; }
 
38
}