Interface ApplicationManager
-
Method Summary
Modifier and TypeMethodDescriptionaddJob
(String applicationName, ApplicationJobDetails applicationJobDetails) void
Clone applicationvoid
compileScript
(String scriptText) This API method will validate compilation of given groovy script.void
create
(Application application) Create applicationboolean
createBackup
(Application app) void
createInstanceFromApplication
(Application application) Create instance from Application Newly created application will share the Schema,Provisioning and Reconciliation configurations.void
createTemplate
(Application application) Create a Template.void
deleteApplicationJob
(String applicationName, String jobName) Delete given schedule job and remove its entry from given template as wellvoid
disableJob
(String jobName) void
findApplications
(SearchCriteria searchCriteria, HashMap<String, Object> configParams) Returns the list of the Applications based on the search criteria published in user's organization scope and has VIEW_SEARCH privilege on application.findDiff
(Application app) findFlatFieConnectedApplications
(SearchCriteria searchCriteria, HashMap<String, Object> configParams) Returns the list of the FlatFile Configurations for a Connected Application based on the search criteria published in user's organization scope and has VIEW_SEARCH privilege on application.findTemplates
(SearchCriteria searchCriteria) Returns a list of templates based on given search criteria which are saved as a template from UI or imported through Deployment Manager.boolean
flushBackup
(Application app) getAllJobsForApplication
(String applicationName) getApplication
(String appName) Retrieves the application detail by nameGet UI related static metadataGet the list of names of all the Connector Servers.getDetailsOfJob
(String applicationName, String jobName) getHeaders
(String fileLocation, Application app) To get list of headers of given CSV file This api will parse given csv file and return list of headersgetHistoryofJob
(String jobName) getReportofJob
(Double historyId) getResultsofJobHistory
(Double historyId) getTemplate
(String templateName) Get the Template based on given template name.getTemplateFromBundle
(String connectorName, String connectorVersion, boolean isAuthoritative) Return java representation of XML based Application Template for the requested connectorgetTemplateFromBundle
(String connectorName, String connectorVersion, String connectorPkgPath, boolean isAuthoritative) Return java representation of XML based Application Template for the requested connectorgetUpgradeStatus
(String connectorName, String connectorVersion) listAvailableConnectors
(boolean isAuthoritative) Returns the list of available Connector bundles reside in ConnectorDefaultDirectory based on isAuthoritative parameter value.listAvailableConnectors
(String alternatePath, boolean isAuthoritative) Returns the list of available Connector bundles reside in alternate deployment Directory based on isAuthoritative parameter value.populateTargetSchema
(Application application) readSchemaAttributesFromBundle
(Application application, String objectClassName) Read schema attributes for the given Object Class from the connector bundlevoid
retrySingleAppUpgrade
(String appName) void
retryUpgrade
(List<ApplicationDiff> diffs) void
void
void
testConnection
(Application application) This API method will verify whether the application is able to connect to the actual target successfully.void
update
(Application application) Update application or instace application application will be considered as instance application if baseApplicationName is supplied.void
updateJob
(String applicationName, ApplicationJobDetails applicationJobDetails) void
updateTemplate
(Application application) Update existing Template.void
upgrade
(List<ApplicationDiff> diffs)
-
Method Details
-
findApplications
List<Application> findApplications(SearchCriteria searchCriteria, HashMap<String, Object> configParams) throws ExceptionReturns the list of the Applications based on the search criteria published in user's organization scope and has VIEW_SEARCH privilege on application.- Parameters:
searchCriteria
- The Search criteria based on which Applications will be retrieved from the backend.configParams
- Parameter to further configure the search operation. You can provide name,displayName,connectorName,connectorVersion,disconnected,authoritative,SORTEDBY and SORTORDER as search parameter.The 'name' search configuration parameter indicates application name.
The 'displayName' search configuration parameter indicates application display name.
The 'connectorName' search configuration parameter indicates Connector display name of the application.
The 'connectorVersion' search configuration parameter indicates Connector version of the application.
The 'disconnected' search configuration parameter indicates whether application is Disconnected on not. Pass 'true' to search for disconnected application only.
The 'authoritative' search configuration parameter indicates whether application is Authoritative on not
Pass 'true' to search for Authoritative application only. The 'name' search configuration parameter indicates name of the application instance
The 'name' search configuration parameter indicates name of the application instance
The SORTEDBY search configuration parameter indicates the attribute on which search result is to be sorted. This parameter is optional.
The SORTORDER configuration parameter indicates the sorting order of the result, SortOrder.ASCENDING and SortOrder.DESCENDING. This parameter is optional.
- Returns:
- list of Application VO that match the search criteria.
- Throws:
Exception
-
findFlatFieConnectedApplications
List<Application> findFlatFieConnectedApplications(SearchCriteria searchCriteria, HashMap<String, Object> configParams) throws ExceptionReturns the list of the FlatFile Configurations for a Connected Application based on the search criteria published in user's organization scope and has VIEW_SEARCH privilege on application.- Parameters:
searchCriteria
- The Search criteria based on which Configurations will be retrieved from the backend.configParams
- Parameter to further configure the search operation. You can provide name,displayName,SORTEDBY and SORTORDER as search parameter.The 'name' search configuration parameter indicates flatfile configuration name.
The 'displayName' search configuration parameter indicates flatfile configuration display name. *
The SORTEDBY search configuration parameter indicates the attribute on which search result is to be sorted. This parameter is optional.
The SORTORDER configuration parameter indicates the sorting order of the result, SortOrder.ASCENDING and SortOrder.DESCENDING. This parameter is optional.
- Returns:
- list of Application VO that match the search criteria.
- Throws:
Exception
-
testConnection
This API method will verify whether the application is able to connect to the actual target successfully. This assumes that all the configuration propeties and the @oracle.iam.application.vo.Application is configured properly.- Parameters:
application
- The Application VO for which to test the connection, with the configuration properties configured.- Throws:
Exception
-
compileScript
This API method will validate compilation of given groovy script. Given groovy script can be validation or transformation script.- Parameters:
scriptText
- - script source code as String- Throws:
Exception
- in case of compilation failure or exception in generating script class-
-
listAvailableConnectors
List<CIBean> listAvailableConnectors(String alternatePath, boolean isAuthoritative) throws Exception Returns the list of available Connector bundles reside in alternate deployment Directory based on isAuthoritative parameter value. if isAuthoritative paramerter is true then return list of connector bundle which has trusted template if isAuthoritative paramerter is false then return list of connector bundle which has target template- Parameters:
alternatePath
- - absolute path of the alternate DirectoryisAuthoritative
- - this boolean flag indicates filter criteria among list of connectors deployed set 'true' to get list of connectors which has template for Authoritative source set 'false' to get a list of connectors which has template for Target Resource- Returns:
- set of CIBean which contains the connector bundle package information. CIBean contains Connector Display Name,Connector Version CI XML file absolute path, Application Template absolute path. Connector bundle package absolute path.
- Throws:
Exception
-
listAvailableConnectors
Returns the list of available Connector bundles reside in ConnectorDefaultDirectory based on isAuthoritative parameter value. if isAuthoritative paramerter is true then return list of connector bundle which has trusted template if isAuthoritative paramerter is false then return list of connector bundle which has target template- Parameters:
isAuthoritative
- - this boolean flag indicates filter criteria among list of connectors deployed set 'true' to get list of connectors which has template for Authoritative source set 'false' to get a list of connectors which has template for Target Resource- Returns:
- Set of CIBean which contains the connector bundle package information. CIBean contains Connector Display Name,Connector Version CI XML file absolute path, Application Template absolute path. Connector bundle package absolute path.
- Throws:
Exception
-
clone
Clone application- Parameters:
applicationName
- Name of application- Throws:
Exception
-
create
Create application- Parameters:
applicationName
- Name of application- Throws:
Exception
-
update
Update application or instace application application will be considered as instance application if baseApplicationName is supplied. Only below attributes/configuration update is supported during instance application update. 1. Application Name 2. Application Display Name 3. Application Description 4. Basic Configurations 5. Catalog attributes 6. Organization publication Below additional configuration update is supported with application update 1. Advance Configurations 2. Schema Configurations 3. Provisioning Configuration- Parameters:
application
- Application instance- Throws:
Exception
-
getTemplate
Get the Template based on given template name. Returned Template can be associated with application instance- Parameters:
templateName
- Name of the template- Returns:
- Returns the Application object
- Throws:
Exception
-
findTemplates
Returns a list of templates based on given search criteria which are saved as a template from UI or imported through Deployment Manager. Will not contain application in returned list- Parameters:
searchCriteria
- Search criteria based on which Templates will be retrieved- Returns:
- list of Application Objects
- Throws:
Exception
-
getTemplateFromBundle
Application getTemplateFromBundle(String connectorName, String connectorVersion, boolean isAuthoritative) throws FileNotFoundException, Exception Return java representation of XML based Application Template for the requested connector- Parameters:
connectorName
- - Display name of the connectorconnectorVersion
- - Display version of the connector- Returns:
- Returns the Application object
- Throws:
FileNotFoundException
Exception
-
getTemplateFromBundle
Application getTemplateFromBundle(String connectorName, String connectorVersion, String connectorPkgPath, boolean isAuthoritative) throws FileNotFoundException, Exception Return java representation of XML based Application Template for the requested connector- Parameters:
connectorName
- - Display name of the connectorconnectorVersion
- - Display version of the connectorconnectorPkgPath
- - Absolute path of the connector bundle package deployed into OIM- Returns:
- Returns the Application object
- Throws:
FileNotFoundException
Exception
-
readSchemaAttributesFromBundle
List<SchemaAttribute> readSchemaAttributesFromBundle(Application application, String objectClassName) throws Exception Read schema attributes for the given Object Class from the connector bundle- Parameters:
application
- - Application Template instanceobjectClassName
- - Name of the target system Object class(__ACCOUNT__,__GROUP__ etc.)- Returns:
- Returns list of SchemaAttributes. Returns empty list if object class is not supported by the connector bundle
- Throws:
Exception
-
updateTemplate
Update existing Template. No application footprint will get created. The template will be updated for future use- Parameters:
application
- - Application Template instance- Throws:
Exception
-
createTemplate
Create a Template. No application footprint will get created. The template will be created for future use- Parameters:
application
-- Throws:
Exception
-
getApplication
Retrieves the application detail by name- Parameters:
appName
- Name of the application instance- Returns:
- Returns the Application object
- Throws:
Exception
-
getConnectorServers
Get the list of names of all the Connector Servers.- Returns:
- List of name of connector servers
- Throws:
Exceptions
Exception
-
getApplicationUIMetadata
Get UI related static metadata- Returns:
- - ApplicationUIMetadata instance
- Throws:
Exception
-
createInstanceFromApplication
Create instance from Application Newly created application will share the Schema,Provisioning and Reconciliation configurations. Connectivity info(Basic Configurations) will be unique. baseApplicationName from Application VO will be used to create new application from existing application. Only below attributes/configuration will be used from supplied Application to create new application, other attribute will be used from base application 1. Application Name 2. Application Display Name 3. Application Description 4. Basic Configurations 5. Catalog attributes 6. Organization publication New application will use below Configurations from base application 1. Advance Configurations 2. Schema Configurations 3. Provisioning Configuration- Parameters:
application
- Application vo with base application name- Throws:
Exception
- Exception will be thrown if 1. Application is not successfully validated against application.xsd 2. Application does not contains required parameter 3. Application Name is not unique 4. Application does not contains valid base application name.
-
getAllJobsForApplication
- Throws:
Exception
-
getDetailsOfJob
- Throws:
Exception
-
getHistoryofJob
- Throws:
Exception
-
getResultsofJobHistory
- Throws:
Exception
-
runJob
- Throws:
Exception
-
stopJob
- Throws:
Exception
-
enableJob
- Throws:
Exception
-
disableJob
- Throws:
Exception
-
populateTargetSchema
- Throws:
Exception
-
updateJob
void updateJob(String applicationName, ApplicationJobDetails applicationJobDetails) throws Exception - Throws:
Exception
-
addJob
- Throws:
Exception
-
getReportofJob
- Throws:
Exception
-
getHeaders
To get list of headers of given CSV file This api will parse given csv file and return list of headers- Parameters:
fileLocation
- location csv file- Returns:
- Throws:
Exception
-
deleteApplicationJob
Delete given schedule job and remove its entry from given template as well- Parameters:
applicationName
- Application NamejobName
- Job Name- Throws:
Exception
-
getAvailableUpgrades
- Throws:
Exception
-
findDiff
- Throws:
Exception
-
createBackup
- Throws:
Exception
-
flushBackup
- Throws:
Exception
-
upgrade
- Throws:
Exception
-
retrySingleAppUpgrade
- Throws:
Exception
-
getUpgradeStatus
- Throws:
Exception
-
getUpgradeStatus
- Throws:
Exception
-
retryUpgrade
- Throws:
Exception
-