How to get resource resources programmatically using oim 11g client api

I am using oracle OIM 11g api (in oracle.iam packages). I use the oracle.iam.platform.OIMClient class to get all OIM client services, such as UserManager.

I need to find resources obtained with provisioning workflows. What service can i use? How can I do with OIM api?

+5
source share
1 answer

The method below should export all resources to an XML file -

public Boolean export() {
    Boolean result = true;
    String export_object="Resource";
    try {
       FileWriter fstream = new FileWriter("OIMResources.xml");
       BufferedWriter out = new BufferedWriter(fstream);
       tcExportOperationsIntf moExportUtility = (tcExportOperationsIntf) ioUtilityFactory.getUtility("Thor.API.Operations.tcExportOperationsIntf");
       Collection<RootObject> lstObjects = moExportUtility.findObjects(export_object, "*");
       System.out.println(lstObjects);
       lstObjects.addAll(moExportUtility.getDependencies(lstObjects));
       lstObjects.addAll(moExportUtility.retrieveChildren(lstObjects));
       lstObjects.addAll(moExportUtility.retrieveDependencyTree(lstObjects));
       String s = moExportUtility.getExportXML(lstObjects, "*");    
       out.write(s);
       LOG.info(Resource + "Objects successfully exported");
       out.close();
   } catch (Exception e) {
        LOG.log(Level.SEVERE, "Exception occured while exporting OIM object" + Resource, e);
     }
   return result;
 }
+3
source

All Articles