KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > OpenCCM_DCI > cif > AssemblyManagerModelRegistrationSegImpl


1 /*====================================================================
2
3 OpenCCM: The Open CORBA Component Model Platform
4 Copyright (C) 2000-2004 INRIA - USTL - LIFL - GOAL
5 Contact: openccm@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): Briclet Frédéric.
23 Contributor(s): ______________________________________.
24
25 ====================================================================*/

26
27 package org.objectweb.openccm.OpenCCM_DCI.cif;
28
29 import org.objectweb.openccm.OpenCCM_DCI.*;
30 /**
31  * This is the implementation of the
32  * OpenCCM_DCI::AssemblyManagerModelRegistration interface.
33  *
34  * This class inherits from the skeleton
35  * generated by the OpenCCM's CIF to Java mapping generator.
36  *
37  * @author <a HREF="mailto:Frederic.Briclet@lifl.fr">Briclet Frederic</A>
38  */

39 public class AssemblyManagerModelRegistrationSegImpl
40     extends org.objectweb.openccm.OpenCCM_DCI.
41             DCIManagerSessionComposition.AssemblyManagerModelRegistrationSeg
42 {
43     // ==================================================================
44
//
45
// Internal state.
46
//
47
// ==================================================================
48
// ==================================================================
49
//
50
// Internal methods.
51
//
52
// ==================================================================
53
// ==================================================================
54
//
55
// Constructor.
56
//
57
// ==================================================================
58
// ==================================================================
59
//
60
// Public methods.
61
//
62
// ==================================================================
63

64     /**
65      * Registration method to register a AssemblyManagerModel to a DCI
66      * manager.
67      * @param assembly_manager_model The component to register
68      * @ return a connection cookie.
69      */

70     public org.omg.Components.Cookie
71     register_assembly_manager_model(
72                               org.objectweb.openccm.OpenCCM_DCI
73                               .AssemblyManagerModel assembly_manager_model)
74     {
75         try{
76             //connect the ComponentServerManager and return the cookie
77
return
78                 ((org.objectweb.openccm
79                   .OpenCCM_DCI.DCIManagerCCM)get_context())
80                 .connect_assembly_manager_models(assembly_manager_model) ;
81         }
82         catch(Exception JavaDoc e){e.printStackTrace();}
83         System.err.println("Error occured during assembly manager model connection");
84      return null;
85     }
86         
87         
88     /**
89      * Unregistration method to unregister a AssemblyManagerModel to a DCI
90      * manager.
91      * @param cookie the cookie of the connection to break
92      */

93     public void
94     unregister_assembly_manager_model(org.omg.Components.Cookie cookie)
95     throws org.omg.Components.CookieRequired
96         {
97            try{
98                //Break the connection
99
((org.objectweb.openccm.OpenCCM_DCI.DCIManagerCCM)
100                 get_context())
101                    .disconnect_assembly_manager_models(cookie);
102            }
103            catch(Exception JavaDoc e){
104                e.printStackTrace();
105                throw new org.omg.Components.CookieRequired();
106            }
107         }
108     
109 }
110
Popular Tags