KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ist > coach > coachEmfServicesComponents > BasicLogHomeImpl


1 /*====================================================================
2 This file was produced by the OpenCCM ir3_jimpl generator.
3 OpenCCM: The Open CORBA Component Model Platform
4 Copyright (C) 2000-2002 USTL - LIFL - GOAL
5 Contact: openccm-team@objectweb.org
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or any later version.
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 You should have received a copy of the GNU Lesser General Public
15 License along with this library; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 USA
18 Initial developer(s): Philippe Merle, Mathieu Vadet.
19 Contributor(s): ______________________________________.
20 ====================================================================*/

21 package ist.coach.coachEmfServicesComponents;
22  
23 /**
24  ** Implementation skeleton class for the ::coachEmfServicesComponents::BasicLogHome home.
25  ** Business operations MUST be completed !!!
26  **/

27 public class BasicLogHomeImpl
28        extends org.omg.CORBA.LocalObject JavaDoc
29        implements CCM_BasicLogHome
30 {
31     // ==================================================================
32
//
33
// Internal State.
34
//
35
// ===================================================================
36

37     // ==================================================================
38
//
39
// Constructor.
40
//
41
// ===================================================================
42

43     /**
44      ** The default constructor.
45      **/

46     public
47     BasicLogHomeImpl()
48     {
49     }
50      
51     // ==================================================================
52
//
53
// Internal methods.
54
//
55
// ===================================================================
56

57     // ==================================================================
58
//
59
// Public methods for the CCM_BasicLogHome local interface.
60
//
61
// ==================================================================
62

63     //
64
// IDL:coach.ist/coachEmfServicesComponents/CCM_BasicLogHomeExplicit/create_log:1.0
65
//
66
/**
67      ** Implementation of the ::coachEmfServicesComponents::CCM_BasicLogHomeExplicit::create_log operation.
68      **/

69     public org.omg.Components.EnterpriseComponent
70     create_log(short full_action, long max_size)
71     throws ist.coach.coachEmfServices.EmfBasicLog.InvalidLogFullAction
72     {
73         //
74
// TODO : implement
75
//
76
return null;
77     }
78     //
79
// IDL:coach.ist/coachEmfServicesComponents/CCM_BasicLogHomeExplicit/create_with_id:1.0
80
//
81
/**
82      ** Implementation of the ::coachEmfServicesComponents::CCM_BasicLogHomeExplicit::create_with_id operation.
83      **/

84     public org.omg.Components.EnterpriseComponent
85     create_with_id(int id, short full_action, long max_size)
86     throws ist.coach.coachEmfServices.EmfBasicLog.LogIdAlreadyExists, ist.coach.coachEmfServices.EmfBasicLog.InvalidLogFullAction
87     {
88         //
89
// TODO : implement
90
//
91
return null;
92     }
93     //
94
// IDL:coach.ist/coachEmfServices/EmfBasicLog/LogMgr/list_logs:1.0
95
//
96
/**
97      ** Implementation of the ::coachEmfServices::EmfBasicLog::LogMgr::list_logs operation.
98      **/

99     public ist.coach.coachEmfServices.EmfBasicLog.Log[]
100     list_logs()
101     {
102         //
103
// TODO : implement
104
//
105
return null;
106     }
107     //
108
// IDL:coach.ist/coachEmfServices/EmfBasicLog/LogMgr/find_log:1.0
109
//
110
/**
111      ** Implementation of the ::coachEmfServices::EmfBasicLog::LogMgr::find_log operation.
112      **/

113     public ist.coach.coachEmfServices.EmfBasicLog.Log
114     find_log(int id)
115     {
116         //
117
// TODO : implement
118
//
119
return null;
120     }
121     //
122
// IDL:coach.ist/coachEmfServices/EmfBasicLog/LogMgr/list_logs_by_id:1.0
123
//
124
/**
125      ** Implementation of the ::coachEmfServices::EmfBasicLog::LogMgr::list_logs_by_id operation.
126      **/

127     public int[]
128     list_logs_by_id()
129     {
130         //
131
// TODO : implement
132
//
133
return null;
134     }
135     //
136
// IDL:coach.ist/coachEmfServicesComponents/CCM_BasicLogHomeImplicit/create:1.0
137
//
138
/**
139      ** Implementation of the ::coachEmfServicesComponents::CCM_BasicLogHomeImplicit::create operation.
140      **/

141     public org.omg.Components.EnterpriseComponent
142     create(ist.coach.coachEmfServicesComponents.NamePrimaryKey key)
143     throws org.omg.Components.CCMException
144     {
145         //
146
// TODO : implement
147
//
148
return null;
149     }
150     //
151
// IDL:coach.ist/coachEmfServicesComponents/CCM_BasicLogHomeImplicit/find_by_primary_key:1.0
152
//
153
/**
154      ** Implementation of the ::coachEmfServicesComponents::CCM_BasicLogHomeImplicit::find_by_primary_key operation.
155      **/

156     public org.omg.Components.EnterpriseComponent
157     find_by_primary_key(ist.coach.coachEmfServicesComponents.NamePrimaryKey key)
158     throws org.omg.Components.CCMException
159     {
160         //
161
// TODO : implement
162
//
163
return null;
164     }
165     //
166
// IDL:coach.ist/coachEmfServicesComponents/CCM_BasicLogHomeImplicit/remove:1.0
167
//
168
/**
169      ** Implementation of the ::coachEmfServicesComponents::CCM_BasicLogHomeImplicit::remove operation.
170      **/

171     public void
172     remove(ist.coach.coachEmfServicesComponents.NamePrimaryKey key)
173     throws org.omg.Components.CCMException
174     {
175         //
176
// TODO : implement
177
//
178
}
179     // ==================================================================
180
//
181
// Deployment entry point.
182
//
183
// ===================================================================
184

185     /**
186      ** This method is called by the deployment framework
187      ** to create a home instance.
188      ** You are free to choose another operation name, but
189      ** the signature MUST be the same.
190      **/

191     public static org.omg.Components.HomeExecutorBase
192     create_home()
193     {
194         return new BasicLogHomeImpl();
195     }
196 }
197
Popular Tags