KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > admin > controller > LogElementDisplay


1 /*
2  * LogElementDisplay.java
3  *
4  * Created on June 3, 2003, 10:37 AM
5  */

6
7 package com.quikj.application.communicator.admin.controller;
8
9 /**
10  *
11  * @author bhm
12  */

13 public class LogElementDisplay
14 {
15     
16     /** Holds value of property datetime. */
17     private String JavaDoc datetime;
18     
19     /** Holds value of property severity. */
20     private String JavaDoc severity;
21     
22     /** Holds value of property hostName. */
23     private String JavaDoc hostName;
24     
25     /** Holds value of property processName. */
26     private String JavaDoc processName;
27     
28     /** Holds value of property processInstance. */
29     private String JavaDoc processInstance;
30     
31     /** Holds value of property message. */
32     private String JavaDoc message;
33     
34     /** Creates a new instance of LogElementDisplay */
35     public LogElementDisplay()
36     {
37     }
38     
39     /** Getter for property datetime.
40      * @return Value of property datetime.
41      *
42      */

43     public String JavaDoc getDatetime()
44     {
45         return this.datetime;
46     }
47     
48     /** Setter for property datetime.
49      * @param datetime New value of property datetime.
50      *
51      */

52     public void setDatetime(String JavaDoc datetime)
53     {
54         this.datetime = datetime;
55     }
56     
57     /** Getter for property severity.
58      * @return Value of property severity.
59      *
60      */

61     public String JavaDoc getSeverity()
62     {
63         return this.severity;
64     }
65     
66     /** Setter for property severity.
67      * @param severity New value of property severity.
68      *
69      */

70     public void setSeverity(String JavaDoc severity)
71     {
72         this.severity = severity;
73     }
74     
75     /** Getter for property hostName.
76      * @return Value of property hostName.
77      *
78      */

79     public String JavaDoc getHostName()
80     {
81         return this.hostName;
82     }
83     
84     /** Setter for property hostName.
85      * @param hostName New value of property hostName.
86      *
87      */

88     public void setHostName(String JavaDoc hostName)
89     {
90         this.hostName = hostName;
91     }
92     
93     /** Getter for property processName.
94      * @return Value of property processName.
95      *
96      */

97     public String JavaDoc getProcessName()
98     {
99         return this.processName;
100     }
101     
102     /** Setter for property processName.
103      * @param processName New value of property processName.
104      *
105      */

106     public void setProcessName(String JavaDoc processName)
107     {
108         this.processName = processName;
109     }
110     
111     /** Getter for property processInstance.
112      * @return Value of property processInstance.
113      *
114      */

115     public String JavaDoc getProcessInstance()
116     {
117         return this.processInstance;
118     }
119     
120     /** Setter for property processInstance.
121      * @param processInstance New value of property processInstance.
122      *
123      */

124     public void setProcessInstance(String JavaDoc processInstance)
125     {
126         this.processInstance = processInstance;
127     }
128     
129     /** Getter for property message.
130      * @return Value of property message.
131      *
132      */

133     public String JavaDoc getMessage()
134     {
135         return this.message;
136     }
137     
138     /** Setter for property message.
139      * @param message New value of property message.
140      *
141      */

142     public void setMessage(String JavaDoc message)
143     {
144         this.message = message;
145     }
146     
147 }
148
Popular Tags