1 /*
2 * Copyright (c) 1998-2004 The Jgroup Team.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 *
17 */
18
19 package jgroup.arm;
20
21 import java.io.IOException;
22 import java.io.ObjectInput;
23 import java.io.ObjectOutput;
24
25 import jgroup.core.arm.ARMEvent;
26 import jgroup.core.arm.DistributionScheme;
27 import jgroup.relacs.config.ClassData;
28
29 /**
30 * @author Hein Meling
31 */
32 public class ReplicaFailureEvent
33 implements ARMEvent
34 {
35
36 private static final long serialVersionUID = -7726215597500410316L;
37
38 public ReplicaFailureEvent(ClassData clData)
39 {
40
41 }
42
43 /* (non-Javadoc)
44 * @see jgroup.core.arm.ARMEvent#handle(jgroup.core.arm.DistributionScheme)
45 */
46 public void handle(DistributionScheme distScheme)
47 throws Exception
48 {
49 // TODO Auto-generated method stub
50
51 }
52
53 /* (non-Javadoc)
54 * @see jgroup.core.arm.ARMEvent#getGroupId()
55 */
56 public int getGroupId()
57 {
58 // TODO Auto-generated method stub
59 return 0;
60 }
61
62 /* (non-Javadoc)
63 * @see jgroup.core.arm.ARMEvent#getObject()
64 */
65 public Object getObject()
66 {
67 // TODO Auto-generated method stub
68 return null;
69 }
70
71 /* (non-Javadoc)
72 * @see java.io.Externalizable#writeExternal(java.io.ObjectOutput)
73 */
74 public void writeExternal(ObjectOutput out) throws IOException
75 {
76 // TODO Auto-generated method stub
77
78 }
79
80 /* (non-Javadoc)
81 * @see java.io.Externalizable#readExternal(java.io.ObjectInput)
82 */
83 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
84 {
85 // TODO Auto-generated method stub
86
87 }
88
89 } // END ReplicaFailureEvent