01: /*
02:
03: * Copyright (c) 2001 Silvere Martin-Michiellot All Rights Reserved.
04:
05: *
06:
07: * Silvere Martin-Michiellot grants you ("Licensee") a non-exclusive,
08:
09: * royalty free, license to use, modify and redistribute this
10:
11: * software in source and binary code form,
12:
13: * provided that i) this copyright notice and license appear on all copies of
14:
15: * the software; and ii) Licensee does not utilize the software in a manner
16:
17: * which is disparaging to Silvere Martin-Michiellot.
18:
19: *
20:
21: * This software is provided "AS IS," without a warranty of any kind. ALL
22:
23: * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
24:
25: * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
26:
27: * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. Silvere Martin-Michiellot
28:
29: * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
30:
31: * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
32:
33: * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
34:
35: * Silvere Martin-Michiellot OR ITS LICENSORS BE LIABLE
36:
37: * FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
38:
39: * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
40:
41: * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
42:
43: * OR INABILITY TO USE SOFTWARE, EVEN IF Silvere Martin-Michiellot HAS BEEN
44:
45: * ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
46:
47: *
48:
49: * This software is not designed or intended for use in on-line control of
50:
51: * aircraft, air traffic, aircraft navigation or aircraft communications; or in
52:
53: * the design, construction, operation or maintenance of any nuclear
54:
55: * facility. Licensee represents and warrants that it will not use or
56:
57: * redistribute the Software for such purposes.
58:
59: *
60:
61: * @Author: Silvere Martin-Michiellot
62:
63: *
64:
65: */
66:
67: package com.db.net;
68:
69: /**
70:
71: * Just a tagging interface to allow Request, Reply, Notification to be processed in a consistent manner.
72:
73: */
74:
75: public class Message extends Object {
76:
77: public Message() {
78:
79: super();
80:
81: }
82:
83: }
|