blob: f8027f063eb2477b1b5c6e8a03ef96c214a8e5b8 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
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
24import java.rmi.RemoteException;
25import java.rmi.server.UnicastRemoteObject;
26import java.util.logging.Logger;
27import java.util.logging.Level;
28
29/**
30 * The AppleImpl class implements the behavior of the remote "apple"
31 * objects exported by the application.
32 */
33public class AppleImpl extends UnicastRemoteObject implements Apple {
34
35 private static final Logger logger = Logger.getLogger("reliability.apple");
36 private final String name;
37
38 public AppleImpl(String name) throws RemoteException {
39 this.name = name;
40 }
41
42 /**
43 * Receive an array of AppleEvent objects.
44 */
45 public void notify(AppleEvent[] events) {
46 String threadName = Thread.currentThread().getName();
47 logger.log(Level.FINEST,
48 threadName + ": " + toString() + ".notify: BEGIN");
49
50 for (int i = 0; i < events.length; i++) {
51 logger.log(Level.FINEST,
52 threadName + ": " + toString() + ".notify(): events["
53 + i + "] = " + events[i].toString());
54 }
55
56 logger.log(Level.FINEST,
57 threadName + ": " + toString() + ".notify(): END");
58 }
59
60 /**
61 * Return a newly created and exported orange implementation.
62 */
63 public Orange newOrange(String name) throws RemoteException {
64 String threadName = Thread.currentThread().getName();
65 logger.log(Level.FINEST,
66 threadName + ": " + toString() + ".newOrange(" + name + "): BEGIN");
67
68 Orange orange = new OrangeImpl(name);
69
70 logger.log(Level.FINEST,
71 threadName + ": " + toString() + ".newOrange(" + name + "): END");
72
73 return orange;
74 }
75
76 public String toString() {
77 return name;
78 }
79}