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
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?
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?