Friday, 15 June 2012

OIM Connectivity through API


OIM 11g connectivity program
tcLookupOperationsIntf lookupOpsIntf = null;
lookupOpsIntf=Platform.getService(tcLookupOperationsIntf.class);
lookupResSet = lookupOpsIntf.getLookupValues(lookupName);
OIM 10g connectivity program.
tcUtilityFactory utilFactory = null;
tcLookupOperationsIntf lookupOpsIntf = null;
utilFactory = UtilityFactory.getUtilityFactoryAsAdmin();
lookupOpsIntf =(tcLookupOperationsIntf)utilFactory.getUtility("Thor.API.Operations.tcLookupOperationsIntf");
lookupResSet = lookupOpsIntf.getLookupValues(lookupName);

No comments:

Post a Comment