cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
gkc123
Deckhand

read-only system admin access

Is there any plugin or capability for read-only system admin access for 8.1 or 8.2 versions,  pls suggest any leads on this,thanks

2 Replies
gkc123
Deckhand

import sailpoint.api.identityService;
import sailpoint.object.*;
String explanation = "AD account disabled";
if(entity instanceof Identity) {
Identity identity = (Identity)entity;
if(null != identity) {
Application application = context.getObjectByName(Application.class,"AD");
IdentityService is = new IdentityService(context);
List LinksList = is.getLinks(identity,application);
if(null != linksList && linksList.size() > 0) {
for(Link link : linksList) {
if(link.isDisabled()) {
for(Iterator it = items.iterator(); it.hasNext();) {
Certifiable certifiable = it.next();
it.remove();
itemsToExclude.add(certifiable);
}
}
}
}
}
}

 

0 Kudos
Reply
atilafirmino
Deckhand III

Hi!

As far as I know, read-only capability was introduced in IIQ 8.4...