948eb3430b096e3e272bc7ed512d1f42cf145bf4
[WeStealzYourDataz.git] / src / uk / ac / ntu / n0521366 / wsyd / libs / message / MessagePresence.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 /**
27  *
28  * @author TJ <hacker@iam.tj>
29  */
30 public class MessagePresence extends MessageAbstract {
31     private static final String _type = "Presence";
32     
33     /**
34      * Return the class type without needing an instance object.
35      * 
36      * Workaround for Java not permitting 'abstract static' qualifiers which would
37      * allow static methods in abstract base classes to be overridden in sub-classes.
38      * 
39      * @return class type
40      */
41     public static String getType() {
42         return _type;
43     }
44     
45     /**
46      * The title of the service advertising itself.
47      * 
48      * E.g. "ServerSocial", "ServerChat", "ServerLog","UserSocial", 'UserChat",  "Notify"
49      */
50     public String serviceName;
51     
52     /**
53      * The port number this service listens on.
54      * 
55      * The IP address should be set by the receiving service in the sourceAddress property.
56      */
57     int port;
58
59     /**
60      * The message type
61      * @return "Presence"
62      */
63     @Override
64     public String getMessageType() {
65         return _type;
66     }
67
68     public MessagePresence(String service, int port) {
69         super();
70         this.serviceName = service;
71         this.port = port;
72     } 
73 }