Changeset 2602 for trunk/components/blitz/test/ome/icy/model/utests/ServiceFactoryServiceCreationDestructionTest.java
- Timestamp:
- 07/06/08 10:05:22 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/blitz/test/ome/icy/model/utests/ServiceFactoryServiceCreationDestructionTest.java
r2597 r2602 24 24 import omero.api.IAdminPrxHelper; 25 25 import omero.api._IAdminTie; 26 import omero.constants.CLIENTUUID; 26 27 27 28 import org.aopalliance.intercept.MethodInvocation; … … 51 52 ServiceFactoryI sf; 52 53 Map<String, Ice.Object> map; 54 Ice.Current current = new Ice.Current(); 55 { 56 current.ctx = new HashMap<String, String>(); 57 current.ctx.put(CLIENTUUID.value, "clientuuid"); 58 } 53 59 54 60 // FIXME OmeroContext should be an interface! … … 103 109 104 110 Principal p = new Principal("session", "group", "type"); 105 sf = new ServiceFactoryI(c ontext, manager, executor, p, hwi);111 sf = new ServiceFactoryI(current, context, manager, executor, p, hwi); 106 112 }; 107 113
