KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > messaging > oamp > MonitorFeaturesStartMessage


1 /*
2  * MonitorFeaturesStartMessage.java
3  *
4  * Created on December 19, 2002, 5:12 PM
5  */

6
7 package com.quikj.application.web.talk.messaging.oamp;
8
9 import com.quikj.application.web.oamp.messaging.*;
10
11 /**
12  *
13  * @author bhm
14  */

15 public class MonitorFeaturesStartMessage implements OAMPMessageInterface
16 {
17     public static final String JavaDoc MESSAGE_TYPE = "monitor_features_start";
18     
19     private String JavaDoc errorMessage = "";
20     
21     /** Creates a new instance of MonitorFeaturesStartMessage */
22     public MonitorFeaturesStartMessage()
23     {
24     }
25     
26     public String JavaDoc format()
27     {
28         return "<" + OAMPTalkMessageTypes.MONITOR_FEATURES_START_NODE_NAME + "/>\n";
29     }
30     
31     public String JavaDoc getErrorMessage()
32     {
33         return errorMessage;
34     }
35     
36     public String JavaDoc messageType()
37     {
38         return MESSAGE_TYPE;
39     }
40     
41     public boolean parse(Object JavaDoc node_object)
42     {
43         return true;
44     }
45     
46 }
47
Popular Tags