You wonder why so few posts lately, I have been working with SailPoint and I am amassing some content on that also.
Patience as we all transition from a single platform to being conversant in multiple platforms.
Keith
Thanks for viewing my blog on Identity Management and Engineering (mostly IDM). Please follow and check out the advertisers.
Search This Blog
Sunday, March 25, 2018
Java 7+ allows use of java.nio
Most of my blogs are just reminders to myself. When you want to copy a file from one location to another, with Java 7+ you can use the java.nio.file classes to accomplish this.
I'll post some of my own code here later, but here's an example I am going to just include as a reference:
http://www.javapractices.com/topic/TopicAction.do?Id=246
I'll post some of my own code here later, but here's an example I am going to just include as a reference:
http://www.javapractices.com/topic/TopicAction.do?Id=246
Monday, February 5, 2018
Getting SailPoint version information
To get the current version of your environment, load and run this rule:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE Rule PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<Rule language="beanshell" name="TestRule-GetVersion">
<Description>Get Sailpoint Version</Description>
<Source>//
import sailpoint.object.*;
import sailpoint.api.*;
import sailpoint.Version;
String version=sailpoint.Version.getVersion();
String patchLevel=sailpoint.Version.getPatchLevel();
String rval="Version="+version+" Patch Level="+patchLevel;
return rval;
</Source>
</Rule>
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE Rule PUBLIC "sailpoint.dtd" "sailpoint.dtd">
<Rule language="beanshell" name="TestRule-GetVersion">
<Description>Get Sailpoint Version</Description>
<Source>//
import sailpoint.object.*;
import sailpoint.api.*;
import sailpoint.Version;
String version=sailpoint.Version.getVersion();
String patchLevel=sailpoint.Version.getPatchLevel();
String rval="Version="+version+" Patch Level="+patchLevel;
return rval;
</Source>
</Rule>
Subscribe to:
Posts (Atom)