001package com.identityworksllc.iiq.common.task; 002 003import com.identityworksllc.iiq.common.plugin.CommonPluginUtils; 004import com.identityworksllc.iiq.common.service.BaseCommonService; 005import sailpoint.api.SailPointContext; 006import sailpoint.object.Attributes; 007import sailpoint.tools.GeneralException; 008 009import java.util.Iterator; 010import java.util.Map; 011 012public class RoleTargetCleanupService extends AbstractThreadedTask<String> { 013 014 @Override 015 protected Iterator<? extends String> getObjectIterator(SailPointContext context, Attributes<String, Object> args) throws GeneralException { 016 017 return null; 018 } 019 020 @Override 021 public Object threadExecute(SailPointContext threadContext, Map<String, Object> parameters, String obj) throws GeneralException { 022 return null; 023 } 024}