KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > ccm > runtime > ComponentRuntimeConfiguration


1 // ====================================================================
2
//
3
// ECM: The Extensible Container Model
4
// Copyright (C) 2004 THALES
5
// Contact: openccm-ecm@objectweb.org
6
//
7
// This library is free software; you can redistribute it and/or
8
// modify it under the terms of the GNU Lesser General Public
9
// License as published by the Free Software Foundation; either
10
// version 2.1 of the License, or any later version.
11
//
12
// This library is distributed in the hope that it will be useful,
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
// Lesser General Public License for more details.
16
//
17
// You should have received a copy of the GNU Lesser General Public
18
// License along with this library; if not, write to the Free Software
19
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20
// USA
21
//
22
// Initial developer(s): Mathieu Vadet.
23
// Initial Funding: IST COACH European project (IST-2001-34445)
24
// http://www.ist-coach.org
25
//
26
// ====================================================================
27

28
29
30 package org.objectweb.ccm.runtime;
31
32 import org.objectweb.corba.runtime.*;
33
34 /**
35  ** <p>The <tt>ComponentRuntimeConfiguration</tt> stores the various information which must/may
36  ** be passed to the <tt>ComponentRuntime.loadHome</tt> operation.</p>
37  **
38  ** @see org.objectweb.corba.runtime.ComponentRuntime ComponentRuntime
39  **/

40 public class ComponentRuntimeConfiguration
41 {
42     // config with an already existing ORB service
43
public String JavaDoc[] service_uuids;
44     public org.coach.ECM.DegeneratedServiceRef[] dservice_refs;
45     public ORBService orb_service;
46
47     // config with no pre-existing ORB service and an already existing ExtCI
48
// public String[] service_uuids;
49
// public org.coach.ECM.DegeneratedServiceRef[] dservice_refs;
50
public StringifiedInitialReference[] initial_references;
51
52     // config with no pre-existing ORB service and no pre-existing ExtCI
53
// TODO
54

55     // general elements
56
public String JavaDoc implementation_uuid;
57     public String JavaDoc runtime_id;
58     public String JavaDoc runtime_iorfile;
59
60     public
61     ComponentRuntimeConfiguration()
62     {
63         // config with an already existing ORB service
64
service_uuids = new String JavaDoc[0];
65         dservice_refs = new org.coach.ECM.DegeneratedServiceRef[0];
66         orb_service = null;
67
68         // config with no pre-existing ORB service
69
initial_references = new StringifiedInitialReference[0];
70
71         // config with no pre-existing ORB service and no pre-existing ExtCI
72
// TODO
73

74         // general elements
75
implementation_uuid = null;
76         runtime_id = null;
77         runtime_iorfile = null;
78     }
79 }
80
Popular Tags