- package com.oimacademy.NeedEvaluate;
- import com.oimacademy.connection.Platform;
- import oracle.iam.request.api.RequestService;
- import oracle.iam.request.exception.NoRequestPermissionException;
- import oracle.iam.request.exception.RequestServiceException;
- import oracle.iam.request.vo.Request;
- public class RequestLoadAPI {
- public static void main(String[] args) throws RequestServiceException, NoRequestPermissionException {
- RequestService srv1 = Platform.getService(RequestService.class);
- long start = System.currentTimeMillis();
- Request request =srv1.getBasicRequestData("1");
- request.getTargetEntities();
- System.out.println(request.getTargetEntities().size());
- System.out.println("Operation took: " + (System.currentTimeMillis() - start) + " miliseconds");
- }
- }
Oracle Identity Manager(OIM) is the Provisioning Solution from oracle. This page contains an index with references to all OIM related posts in the oracle identity manager Academy blog. The posts included herein are intended to provide oracle identity management customers and developers with technical information about best practices for implementing OIM based solutions.
OIM API to Load request Data
Subscribe to:
Post Comments (Atom)
-
Connection Related API's : OIM DB Connection/ Data Source connection OIMClient API / OIMConnection API OIM Platform API to getSer...
-
Error : Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.springframewor...
-
In this post, we set the middle name as “MiddleName” if user does not provide middle name during user create operation. Below are high...
When i execute above code i got following error,
ReplyDeletejavax.ejb.EJBException: failed to unmarshal interface oracle.iam.request.vo.Request; nested exception is:
java.io.InvalidClassException: org.eclipse.persistence.indirection.IndirectList; local class incompatible: stream classdesc serialVersionUID = 4038061360325736360, local class serialVersionUID = 2384809430150901168; nested exception is: java.io.InvalidClassException: org.eclipse.persistence.indirection.IndirectList; local class incompatible: stream classdesc serialVersionUID = 4038061360325736360, local class serialVersionUID = 2384809430150901168
java.io.InvalidClassException: org.eclipse.persistence.indirection.IndirectList; local class incompatible: stream classdesc serialVersionUID = 4038061360325736360, local class serialVersionUID = 2384809430150901168
Can u tell me why this error get appear?