KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > plugin > UnregistrationEvent


1 package com.quikj.application.web.talk.plugin;
2
3 import com.quikj.server.framework.*;
4
5 public class UnregistrationEvent implements AceMessageInterface
6 {
7     private static final String JavaDoc MESSAGE_TYPE = "UnregistrationMessage";
8     
9     public UnregistrationEvent(String JavaDoc user)
10     {
11         this.user = user;
12     }
13     
14     public String JavaDoc getUser()
15     {
16         return user;
17     }
18     
19     public String JavaDoc messageType()
20     {
21         return MESSAGE_TYPE;
22     }
23     
24     private String JavaDoc user;
25 }
26
Popular Tags