Package oracle.iam.platformservice.api
Interface PlatformUtilsService
public interface PlatformUtilsService
- Since:
- release specific (what release of product did this appear in)
- Version:
- $Header: iam/iam-product/features/platformservice/src/main/oracle/iam /platformservice/api/PlatformUtilsService.java st_iam_divenkat_jardepremoval/1 2009/03/26 04:46:57 divenkat Exp $
- Author:
- rbijja
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteJars
(Set<JarElement> jarElements) Delete the set of jars to the OIM DB.Used to delete connectors, java tasks, scheduled tasks etc
Consumers - deleteJars Utility, Connector Installervoid
deleteResourceBundles
(Set<ResourceElement> resourceBundles) Delete resource bundles to the OIM DB.Used to delete connector and custom resource bundles
Consumers - deleteResourceBundles Utility, Connector Installervoid
downloadJars
(Set<JarElement> jarElements) Downloads the set of jars to the OIM DB.Used to download connectors, java tasks, scheduled tasks etc
Consumers - downloadJars Utility, Connector Installervoid
downloadResourceBundles
(Set<ResourceElement> resourceBundles) Downloads resource bundles to the OIM DB.Used to download connector and custom resource bundles
Consumers - downloadResourceBundles Utility, Connector Installerboolean
Checks if the cache exists for the given cacheKeyvoid
purgeCache
(String category) Purges specific cache category config or alternately the entire cache can be purged using 'All' as the category
Consumers - PurgeCache Utilityvoid
updateJars
(Set<JarElement> jarElements) Updates the set of jars stored in the OIM DB.void
uploadJars
(Set<JarElement> jarElements) Uploads the set of jars to the OIM DB.Used to upload connectors, java tasks, scheduled tasks etc
Consumers - uploadJars Utility, Connector Installervoid
uploadResourceBundles
(Set<ResourceElement> resourceBundles) Uploads resource bundles to the OIM DB.Used to upload connector and custom resource bundles
Consumers - uploadResourceBundles Utility, Connector Installer
-
Method Details
-
purgeCache
Purges specific cache category config or alternately the entire cache can be purged using 'All' as the category
Consumers - PurgeCache Utility- Parameters:
category
-- Throws:
InvalidCacheCategoryException
-
hasCache
Checks if the cache exists for the given cacheKey- Parameters:
cacheKey
- the cacheKey for which the cache to be checked.
-
uploadJars
Uploads the set of jars to the OIM DB.Used to upload connectors, java tasks, scheduled tasks etc
Consumers - uploadJars Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to upload to the DB- Throws:
PlatformServiceException
-
downloadJars
Downloads the set of jars to the OIM DB.Used to download connectors, java tasks, scheduled tasks etc
Consumers - downloadJars Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to download from the DB- Throws:
PlatformServiceException
-
deleteJars
Delete the set of jars to the OIM DB.Used to delete connectors, java tasks, scheduled tasks etc
Consumers - deleteJars Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to delete from the DB- Throws:
PlatformServiceException
-
updateJars
Updates the set of jars stored in the OIM DB. Consumers - UdateJars Utility- Parameters:
jarElements
- the set of JarElements to update in the DB
-
uploadResourceBundles
Uploads resource bundles to the OIM DB.Used to upload connector and custom resource bundles
Consumers - uploadResourceBundles Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to upload to the DB- Throws:
PlatformServiceException
-
downloadResourceBundles
Downloads resource bundles to the OIM DB.Used to download connector and custom resource bundles
Consumers - downloadResourceBundles Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to download from the DB- Throws:
PlatformServiceException
-
deleteResourceBundles
Delete resource bundles to the OIM DB.Used to delete connector and custom resource bundles
Consumers - deleteResourceBundles Utility, Connector Installer- Parameters:
jarElements
- the set of JarElements to delete from the DB- Throws:
PlatformServiceException
-