-
Notifications
You must be signed in to change notification settings - Fork 0
/
domain.ice
372 lines (305 loc) · 8.89 KB
/
domain.ice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*
* MIT License
*
* Copyright (c) 2020 Eduardo Alvarez , Alvaro Castillo , Ignacio Fuenzalida
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
// https://doc.zeroc.com/ice/3.7/language-mappings/java-mapping/client-side-slice-to-java-mapping/customizing-the-java-mapping
["cs:namespace:ParkingUcn.ZeroIce","java:package:cl.ucn.disc.pdis.parkingucn.zeroice"]
module model {
/**
* Categoria de la persona
*/
enum CategoriaPersona {
FUNCIONARIO,ACADEMICO,ESTUDIANTE
}
/**
* Sexo de la persona
*/
enum Sexo {
VAR,MUJ,OTHER
}
/**
* Estado del vehiculo
* IN: Vehiculo dentro del campus
* OUT: Vehiculo fuera del campus
*/
enum Location {
OUT,IN
}
/**
* Lugar de acceso del vehiculo
*/
enum Porteria {
SUR, MANCILLA, SANGRA
}
/**
* Class Persona
*/
["cs:property"]
class Persona{
/**
* Primary Key
*/
int uid;
/**
* Run: 189725965
*/
string run;
/**
* Nombre
*/
string nombre;
/**
* Sexo de la persona
*/
Sexo sexo;
/**
* Unidad perteneciente.
*/
string unidad;
/**
* email
*/
string email;
/**
* Telefono movil
*/
string telefonoMovil;
/**
* Telefono fijo
*/
string telefonoFijo;
/**
* Categoria de la persona
*/
CategoriaPersona categoriaPersona;
}
/**
* Class vehiculo
*/
["cs:property"]
class Vehiculo{
/**
* Primary Key
*/
int uid;
/**
* Patente del vehiculo
*/
string patente;
/**
* Marca vehiculo
*/
string marca;
/**
* Modelo del vehiculo
*/
string modelo;
/**
* Año del vehiculo
*/
int anio;
/**
* Obervaciones
*/
string observaciones;
/**
* Duenio del vehiculo.
*/
string runDuenio;
/**
* Lugar, dentro/fuera del campus
*/
Location location;
}
/**
* Registro acceso de vehiculos.
*/
["cs:property"]
class Acceso {
/**
* Id
*/
int uid;
/**
* Timestamp
*/
string horaEntrada;
/**
* Patente del vehiculo
*/
string patente;
/**
* Lugar de acceso
*/
Porteria porteria;
}
/**
* Listas de vehiculos.
*/
sequence<Vehiculo> Vehiculos;
/**
* Listas de Accesos.
*/
sequence<Acceso> Accesos;
/**
* Listas de Personas.
*/
sequence<Persona> Personas;
exception RunRelationNotFoundException
{
string reason = "ForeyKey run not found on the persona table";
}
exception NotFoundException
{
string reason = "information not found on the system's database";
}
exception DuplicateDataException
{
string reason = "information already exist on the system's database";
}
exception NotAuthorizedException
{
string reason = "the operation can't be authorized";
Location location;
}
exception ServerException
{
string reason = "internal error server doesn't connect to database ";
}
/**
* Interfaz de los Contratos
*/
interface Contratos {
/**
* Registra el acceso de algun vehiculo.
* @param patente identificador unico del vehiculo.
* @param porteria indica la porteria de entrada.
* @return Acceso confirmada la entrada/salida en el sistema, se retornan los datos del vehiculo.
*/
Acceso autorizarVehiculo(string patente, Porteria porteria)
throws ServerException;
/**
* Obtener todos los vehiculos de la bd.
* @return Vehiculos secuencia de objetos de tipo vehiculo.
* @throws ServerException error interno del servidor.
*/
Vehiculos obtenerVehiculos()
throws ServerException;
/**
* Devuelve todas las personas en la base de datos
* @return Personas from database
* @throws ServerException error interno del servidor.
*/
Personas obtenerPersonas()
throws ServerException;
}
/**
* Interfaz del sistema
*/
interface TheSystem {
/**
* Registrar una nueva persona en el sistema.
* @param Persona datos de la persona.
* @return Persona se retornan los datos ingresados en el sistema como confirmacion.
* @throws DuplicateDataException la informacion ingresada ya existe en el sistema.
*/
Persona registrarPersona(Persona persona)
throws DuplicateDataException, ServerException;
/**
* Eliminar una persona del sistema.
* @param run identificador unico de la persona.
* @return Persona se retornan los datos eliminados en el sistema como confirmacion.
* @throws NotFoundException si la informacion ingresada no existe.
*/
Persona eliminarPersona(string run)
throws ServerException;
/**
* Editar una persona del sistema.
* @param Persona datos actualiados de la persona.
* @return Persona se retornan los datos cambiados en el sistema como confirmacion.
*/
Persona editarPersona(Persona persona)
throws ServerException;
/**
* Registrar un nuevo vehiculo en el sistema
* @param Vehiculo datos del vehiculo
* @return Vehiculo se retornan los datos ingresados en el sistema como confirmacion.
* @throws DuplicateDataException la informacion ingresada ya existe en el sistema.
*/
Vehiculo registrarVehiculo(Vehiculo vehiculo)
throws DuplicateDataException, RunRelationNotFoundException , ServerException;
/**
* Eliminar un vehiculo del sistema.
* @param patente identificador unico del vehiculo.
* @return Vehiculo se retornan los datos eliminados en el sistema como confirmacion.
* @throws NotFoundException si la informacion ingresada no existe.
*/
Vehiculo eliminarVehiculo(string patente)
throws ServerException;
/**
* Editar un vehiculo del sistema.
* @param Vehiculo datos actualiados del vehiculo.
* @return Vehiculo se retornan los datos cambiados en el sistema como confirmacion.
*/
Vehiculo editarVehiculo(Vehiculo vehiculo)
throws ServerException;
/**
* Devuelve del delay entre el cliente y el server
* @param Tiempo del cliente
* @return delay entre cliente/servidor
*/
long getDelay(long time)
throws ServerException;
/**
* Obtiene una Persona dado un rut
* @param rut
* @return Persona by rut
*/
Persona getPersona(string rut)
throws ServerException;
/**
* Obtiene un Vehiculo dado un patente
* @param Vehiculo
* @return Vehiculo by patente
*/
Vehiculo getVehiculo(string patente)
throws ServerException;
/**
* Devuelve todos los accesos en la base de datos
* @return Accesos from database
**/
Accesos getAllAccess()
throws ServerException;
/**
* Devuelve todas las personas en la base de datos
* @return Personas from database
**/
Personas getAllPersonas()
throws ServerException;
/**
* Devuelve todos las vehiculos en la base de datos
* @return Vehiculos from database
**/
Vehiculos getAllVehiculos()
throws ServerException;
}
}