KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > fractal > jonathan > JScheduler


1 /***
2  * Fractal RMI: a binder for remote method calls between Fractal components.
3  * Copyright (C) 2003 France Telecom R&D
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  * Contact: Eric.Bruneton@rd.francetelecom.com
20  *
21  * Author: Eric Bruneton
22  */

23
24 package org.objectweb.fractal.jonathan;
25
26 import org.objectweb.fractal.api.control.BindingController;
27
28 import org.objectweb.jonathan.apis.kernel.ContextFactory;
29
30 /**
31  * A Fractal compliant {@link org.objectweb.jonathan.libs.resources.JScheduler}
32  * subclass.
33  */

34
35 public class JScheduler
36   extends org.objectweb.jonathan.libs.resources.JScheduler
37   implements BindingController
38 {
39
40   public JScheduler () {
41     super(null);
42   }
43
44   public String JavaDoc[] listFc () {
45     return new String JavaDoc[] { "context-factory" };
46   }
47
48   public Object JavaDoc lookupFc (final String JavaDoc clientItfName) {
49     if (clientItfName.equals("context-factory")) {
50       return context_factory;
51     }
52     return null;
53   }
54
55   public void bindFc (final String JavaDoc clientItfName, final Object JavaDoc serverItf) {
56     if (clientItfName.equals("context-factory")) {
57       context_factory = (ContextFactory)serverItf;
58     }
59   }
60
61   public void unbindFc (final String JavaDoc clientItfName) {
62     if (clientItfName.equals("context-factory")) {
63       context_factory = null;
64     }
65   }
66 }
67
Popular Tags