KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > communicator > admin > model > LogElement


1 /*
2  * LogElement.java
3  *
4  * Created on April 29, 2003, 2:43 PM
5  */

6
7 package com.quikj.application.communicator.admin.model;
8
9 import java.sql.*;
10
11 /**
12  *
13  * @author Administrator
14  */

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

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

51     public void setMessage(String JavaDoc message) {
52         this.message = message;
53     }
54     
55     /** Getter for property date.
56      * @return Value of property date.
57      *
58      */

59     public Timestamp getDate() {
60         return this.date;
61     }
62     
63     /** Setter for property date.
64      * @param date New value of property date.
65      *
66      */

67     public void setDate(Timestamp date) {
68         this.date = date;
69     }
70     
71     /** Getter for property severity.
72      * @return Value of property severity.
73      *
74      */

75     public int getSeverity()
76     {
77         return this.severity;
78     }
79     
80     /** Setter for property severity.
81      * @param severity New value of property severity.
82      *
83      */

84     public void setSeverity(int severity)
85     {
86         this.severity = severity;
87     }
88     
89     /** Getter for property processName.
90      * @return Value of property processName.
91      *
92      */

93     public String JavaDoc getProcessName()
94     {
95         return this.processName;
96     }
97     
98     /** Setter for property processName.
99      * @param processName New value of property processName.
100      *
101      */

102     public void setProcessName(String JavaDoc processName)
103     {
104         this.processName = processName;
105     }
106     
107     /** Getter for property hostName.
108      * @return Value of property hostName.
109      *
110      */

111     public String JavaDoc getHostName()
112     {
113         return this.hostName;
114     }
115     
116     /** Setter for property hostName.
117      * @param hostName New value of property hostName.
118      *
119      */

120     public void setHostName(String JavaDoc hostName)
121     {
122         this.hostName = hostName;
123     }
124     
125     /** Getter for property processInstance.
126      * @return Value of property processInstance.
127      *
128      */

129     public String JavaDoc getProcessInstance()
130     {
131         return this.processInstance;
132     }
133     
134     /** Setter for property processInstance.
135      * @param processInstance New value of property processInstance.
136      *
137      */

138     public void setProcessInstance(String JavaDoc processInstance)
139     {
140         this.processInstance = processInstance;
141     }
142     
143 }
144
Popular Tags