485b87907b0016c8d0fab1491f3d7291bc371fea
[WeStealzYourDataz.git] / src / uk / ac / ntu / n0521366 / wsyd / libs / message / MessageLogRecord.java
1 /*
2  * The MIT License
3  *
4  * Copyright 2015 TJ <hacker@iam.tj>.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  */
24 package uk.ac.ntu.n0521366.wsyd.libs.message;
25
26 import java.util.logging.LogRecord;
27
28 /**
29  * A specialised message containing a LogRecord
30  * 
31  * @see java.util.logging.LogRecord
32  * @author TJ <hacker@iam.tj>
33  */
34 public class MessageLogRecord extends MessageAbstract {
35     private static final String _type = "LogRecord";
36
37     /**
38      * Return the class type without needing an instance object.
39      * 
40      * Workaround for Java not permitting 'abstract static' qualifiers which would
41      * allow static methods in abstract base classes to be overridden in sub-classes.
42      * 
43      * @return class type
44      */
45     public static String getType() {
46         return _type;
47     }
48     
49     /**
50      * The encapsulated log record
51      * @see java.util.logging.LogRecord
52      */
53     public LogRecord record;
54
55     /**
56      * The message type.
57      *
58      * @return this class's type
59      */
60     @Override
61     public String getMessageType() {
62         return _type;
63     }
64
65     /**
66      * Construct a new message.
67      * 
68      * @param record
69      */
70     public MessageLogRecord(LogRecord record) {
71         super();
72         this.record = record;
73     }
74 }