package com.mbeans; import javax.management.MBeanInfo; import javax.management.MBeanOperationInfo; import javax.management.MBeanParameterInfo; import javax.management.MBeanServerConnection; import javax.management.ObjectName; import javax.management.remote.JMXConnector; import com.connection.GetJMXConnector; public class MBeanForRoleCategorySeedMBean { public static void main(String[] args) throws Exception { JMXConnector connector = GetJMXConnector.getJMXConnection(); MBeanServerConnection conn = connector.getMBeanServerConnection(); ObjectName name = new ObjectName("oracle.iam:Location=oim_server1,name=RoleCategorySeedMBean,type=IAMAppRuntimeMBean,Application=oim,ApplicationVersion=11.1.2.0.0"); MBeanInfo mbi = conn.getMBeanInfo(name); MBeanOperationInfo[] mboarr = mbi.getOperations(); for (int i = 0; i < mboarr.length; i++) { MBeanOperationInfo mbo = mboarr[i]; System.out.println(mbo.getName()); String retType = mbo.getReturnType(); System.out.println("\t" + retType); MBeanParameterInfo[] params = mbo.getSignature(); for (int j=0 ; j<params.length ; j++) { MBeanParameterInfo p = params[j]; System.out.println("\t" + p.getName() + " " + p.getType() + " " + p.getClass()); } } } }
Oracle Identity Manager (OIM R2PS2/PS3/12C) is a highly flexible and scalable enterprise identity administration system that provides operational and business efficiency by providing centralized administration & complete automation of identity and user provisioning events across enterprise as well as extranet applications.
API To Query MBean RoleCategorySeedMBean
Subscribe to:
Posts (Atom)
About OIM
Oracle Identity Management enables organizations to effectively manage the end - to - end life - cycle of user ide...
Popular Posts
-
OIM API's Sample Code : Videos: Massive Gaze Videos Connection Related API's : OIM DB Connection/ Data Source connection ...
-
Videos: Massive Gaze Videos 1. Basic OIM Information 2. MDS Export/Import 3. Steps For R2PS2 / R2PS3 Custom Pre-processor Ev...
-
Videos: Massive Gaze Videos 1. Query to get OIM Provsioned/provisioning Account details 2. Query to get usr keys For Rejected / ...
No comments:
Post a Comment