author | ohair |
Tue, 01 Apr 2008 15:41:23 -0700 | |
changeset 309 | bda219d843f6 |
parent 2 | 90ce3da70b43 |
child 715 | f16baef3a20e |
permissions | -rw-r--r-- |
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
1 |
/* |
2 | 2 |
* Copyright 2003 Sun Microsystems, Inc. All Rights Reserved. |
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
*/ |
|
23 |
||
24 |
import java.rmi.RemoteException; |
|
25 |
import java.rmi.server.UnicastRemoteObject; |
|
26 |
import java.util.logging.Logger; |
|
27 |
import java.util.logging.Level; |
|
28 |
||
29 |
/** |
|
30 |
* The AppleImpl class implements the behavior of the remote "apple" |
|
31 |
* objects exported by the application. |
|
32 |
*/ |
|
33 |
public class AppleImpl extends UnicastRemoteObject implements Apple { |
|
34 |
||
35 |
private static final Logger logger = Logger.getLogger("reliability.apple"); |
|
36 |
private final String name; |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
37 |
|
2 | 38 |
public AppleImpl(String name) throws RemoteException { |
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
39 |
this.name = name; |
2 | 40 |
} |
41 |
||
42 |
/** |
|
43 |
* Receive an array of AppleEvent objects. |
|
44 |
*/ |
|
45 |
public void notify(AppleEvent[] events) { |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
46 |
String threadName = Thread.currentThread().getName(); |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
47 |
logger.log(Level.FINEST, |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
48 |
threadName + ": " + toString() + ".notify: BEGIN"); |
2 | 49 |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
50 |
for (int i = 0; i < events.length; i++) { |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
51 |
logger.log(Level.FINEST, |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
52 |
threadName + ": " + toString() + ".notify(): events[" |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
53 |
+ i + "] = " + events[i].toString()); |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
54 |
} |
2 | 55 |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
56 |
logger.log(Level.FINEST, |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
57 |
threadName + ": " + toString() + ".notify(): END"); |
2 | 58 |
} |
59 |
||
60 |
/** |
|
61 |
* Return a newly created and exported orange implementation. |
|
62 |
*/ |
|
63 |
public Orange newOrange(String name) throws RemoteException { |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
64 |
String threadName = Thread.currentThread().getName(); |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
65 |
logger.log(Level.FINEST, |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
66 |
threadName + ": " + toString() + ".newOrange(" + name + "): BEGIN"); |
2 | 67 |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
68 |
Orange orange = new OrangeImpl(name); |
2 | 69 |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
70 |
logger.log(Level.FINEST, |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
71 |
threadName + ": " + toString() + ".newOrange(" + name + "): END"); |
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
72 |
|
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
73 |
return orange; |
2 | 74 |
} |
75 |
||
76 |
public String toString() { |
|
309
bda219d843f6
6627823: Missed whitespace normalization files: jdk/test/java/rmi
ohair
parents:
2
diff
changeset
|
77 |
return name; |
2 | 78 |
} |
79 |
} |