|
1 |
| -package cbit.rmi.event.client; |
| 1 | +package org.vcell.api.types.utils; |
2 | 2 |
|
3 | 3 | import cbit.rmi.event.DataJobEvent;
|
4 | 4 | import cbit.rmi.event.ExportEvent;
|
5 | 5 | import cbit.rmi.event.SimulationJobStatusEvent;
|
6 |
| -import cbit.rmi.event.client.common.SimpleJobStatusRepresentation; |
7 |
| -import cbit.rmi.event.client.events.*; |
8 | 6 | import cbit.vcell.export.server.HumanReadableExportData;
|
9 | 7 | import cbit.vcell.export.server.TimeSpecs;
|
10 | 8 | import cbit.vcell.export.server.VariableSpecs;
|
|
15 | 13 | import cbit.vcell.solver.Simulation;
|
16 | 14 | import cbit.vcell.solver.VCSimulationIdentifier;
|
17 | 15 | import cbit.vcell.solver.server.SimulationMessage;
|
| 16 | +import org.vcell.api.types.common.SimpleJobStatusRepresentation; |
| 17 | +import org.vcell.api.types.common.UserInfo; |
| 18 | +import org.vcell.api.types.events.*; |
18 | 19 | import org.vcell.util.document.*;
|
19 | 20 |
|
20 | 21 | import java.io.BufferedInputStream;
|
@@ -252,17 +253,17 @@ public static SimulationJobStatusEventRepresentation simulationJobStatusEventToJ
|
252 | 253 | return eventRep;
|
253 | 254 | }
|
254 | 255 |
|
255 |
| - public static cbit.rmi.event.client.common.UserInfo getApiUserInfo(UserInfo userInfo){ |
256 |
| - cbit.rmi.event.client.common.UserInfo apiUserInfo = new cbit.rmi.event.client.common.UserInfo( |
| 256 | + public static UserInfo getApiUserInfo(org.vcell.util.document.UserInfo userInfo){ |
| 257 | + UserInfo apiUserInfo = new UserInfo( |
257 | 258 | (userInfo.id!=null) ? userInfo.id.toString() : null,
|
258 | 259 | userInfo.userid, userInfo.digestedPassword0.getString(), userInfo.email, userInfo.wholeName,
|
259 | 260 | userInfo.title, userInfo.company, userInfo.country, userInfo.notify, userInfo.insertDate);
|
260 | 261 | return apiUserInfo;
|
261 | 262 | }
|
262 | 263 |
|
263 | 264 |
|
264 |
| - public static UserInfo fromApiUserInfo(cbit.rmi.event.client.common.UserInfo apiUserInfo) { |
265 |
| - UserInfo userInfo = new UserInfo(); |
| 265 | + public static org.vcell.util.document.UserInfo fromApiUserInfo(UserInfo apiUserInfo) { |
| 266 | + org.vcell.util.document.UserInfo userInfo = new org.vcell.util.document.UserInfo(); |
266 | 267 | userInfo.id = new KeyValue(apiUserInfo.id);
|
267 | 268 | userInfo.userid = apiUserInfo.userid;
|
268 | 269 | userInfo.digestedPassword0 = UserLoginInfo.DigestedPassword.createAlreadyDigested(apiUserInfo.digestedPassword0);
|
|
0 commit comments