Curriculum
- 22 Sections
- 74 Lessons
- Lifetime
Expand all sectionsCollapse all sections
- Introduction4
- Understanding Application On-Boarding4
- Understanding Rules and Filters2
- Non - Authoritative Application On-boarding8
- 5.1Active Directory as Non – authoritative application12 Minutes
- 5.2Active Directory Account Aggregation25 Minutes
- 5.3Connector Rules and Identity Mapping30 Minutes
- 5.4IQService17 Minutes
- 5.5Feature String and Pass-Through Authentication24 Minutes
- 5.6Group Aggregation15 Minutes
- 5.7Provisioning Plan21 Minutes
- 5.8Group Provisioning20 Minutes
- LifeCycle Management7
- Certifications, Groups and Capability5
- Policy, Form and QuickLink3
- Events2
- Roles2
- LifeCycle and Compliance Manager1
- More On LifeCycle Management5
- Project Build2
- IntegrationConfig1
- Audits and Reports2
- Extended Attributes1
- Scopes1
- REST in IIQ1
- Custom Connector2
- Plugin development2
- Out-of-the-box Connector and Misc13
- 21.1ServiceNow Connector27 Minutes
- 21.2Service Now ticket raise27 Minutes
- 21.3Okta Connector13 Minutes
- 21.4SSO by Okta31 Minutes
- 21.5Self Signed Certificate7 Minutes
- 21.6SSO by Rule11 Minutes
- 21.7Deployment Accelerator20 Minutes
- 21.8Interview Question Part 122 Minutes
- 21.9Interview Question Part 228 Minutes
- 21.10WebService Connector Part 128 Minutes
- 21.11WebService Connector Part 229 Minutes
- 21.12WebService Connector Part 330 Minutes
- 21.13Salesforce Integration19 Minutes
- Resource Center4
- SailPoint IIQ Certification Quiz2
9 Comments
In the above Video at 50:27
there is one line
1)List Props = new ArrayList();
Props.add(“name”); // What is name signifies here , What other things we can write here?
Still I don’t understand the use of this Line Why we used this line ,Can’t we do without this line.
The name is nothing but a property of identity class.to know more about properties of identity class, pls see Identity class or identity hbm file after decompiling the identityiq jar.
Adding the third parameter to Context.search ensures that you only get desired properties of identity class not the whole object.
Some other properties of identity class are firstname, lastname, manager, name etc
I can’t see Main() function as the starting point of the code , We directly writing code .
Please could you tell me how code directly working here?
This seems to be a Java question. Not all class needs to have main method. Sometimes class member methods are meant to be used with the instantiated object.
Hey Admin , I have one doubt Please Could you tell me the use of Before and After Provisioning rule? Any example which can help me to understand the use of both rule?
As the name suggests, before provisioning rule is invoked just before connector do the actual provisioning and after provisioning rule is invoked after provisioning is done.
For example, if you want to send an email to user after it gets access to an application. You can write email logic in after provisioning rule. There are many such examples.
The example rules are present in rules technical white paper pdf
Hello, instructor are saying that “we will discuss more filter method in our advanced training” at 52:25 time….those advanced topic is covered in this course or you guys have different sailpoint course for advanced material?
The advanced course is added in the same course
When we use
qo.setFilter(filters);
Are the filters checked with AND operation or OR operation?