Class: MintPress::OracleBankingPlatform::GenericHostTemplate
- Inherits:
-
MintPress::OracleWeblogic::Template
- Object
- MintPress::OracleWeblogic::Template
- MintPress::OracleBankingPlatform::GenericHostTemplate
- Includes:
- OracleBankingPlatformUtils
- Defined in:
- src/oracle-obp/lib/oracle-obp/host-template.rb
Overview
Properties (Read/Write)
-
#configured_components ⇒ Array of ⇒ String (Default Value: ['Batch'])
'Components to install. '
Property Attributes- default ⇒ ['Batch']
- allowed_values ⇒ ['Batch', 'LCM', 'Deposits', 'Collection_Recovery', 'Product_Manufacturing', 'Origination', 'Pricing', 'Party', 'Loan']
- insensitive ⇒ true
28
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 28 property :configured_components, type: String, default: ['Batch'], array: true, allowed_values: ['Batch', 'LCM', 'Deposits', 'Collection_Recovery', 'Product_Manufacturing', 'Origination', 'Pricing', 'Party', 'Loan'], insensitive: true, description: 'Components to install. '
-
#obpinstall_path ⇒ String (Default Value: Proc.new {"#{domain.fmw_home}/obpinstall"})
'Full path for obpinstall folder'
Property Attributes- default ⇒ Proc.new {"#{domain.fmw_home}/obpinstall"}
31
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 31 property :obpinstall_path, type: String, default: Proc.new {"#{domain.fmw_home}/obpinstall"}, description: 'Full path for obpinstall folder'
-
#database_client_home ⇒ String
'The database client home where sqlplus is available.'
Property Attributes33
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 33 property :database_client_home, type: String, description: 'The database client home where sqlplus is available.'
-
#db_seed_scripts_path ⇒ String (Default Value: Proc.new {"#{domain.adminserver_installation.software_stage}/.."})
'The full path to the location of database seed scripts for OBP Host. Defaults to a directory above software_stage.'
Property Attributes- default ⇒ Proc.new {"#{domain.adminserver_installation.software_stage}/.."}
34
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 34 property :db_seed_scripts_path, type: String, default: Proc.new {"#{domain.adminserver_installation.software_stage}/.."}, description: 'The full path to the location of database seed scripts for OBP Host. Defaults to a directory above software_stage.'
-
#db_seed_security_policy_path ⇒ String (Default Value: Proc.new {"#{domain.adminserver_installation.software_stage}"})
'The full path to the location of database seed security policy scripts for OBP Host. Defaults to the software_stage directory.'
Property Attributes- default ⇒ Proc.new {"#{domain.adminserver_installation.software_stage}"}
35
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 35 property :db_seed_security_policy_path, type: String, default: Proc.new {"#{domain.adminserver_installation.software_stage}"}, description: 'The full path to the location of database seed security policy scripts for OBP Host. Defaults to the software_stage directory.'
-
#database_schema_prefix ⇒ String (Default Value: Proc.new {domain.metadata_repository.schema_prefix})
'The RCU prefix for OBP Host schema. This defaults to the schema_prefix for the domain metadata repository'
Property Attributes- default ⇒ Proc.new {domain.metadata_repository.schema_prefix}
37
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 37 property :database_schema_prefix, type: String, default: Proc.new {domain..schema_prefix}, description: 'The RCU prefix for OBP Host schema. This defaults to the schema_prefix for the domain metadata repository'
-
#database_schema_name ⇒ String (Default Value: Proc.new {"#{self.database_schema_prefix}_OBP"})
'The username for OBP Host schema. This defaults to the schema_prefix_obp.'
Property Attributes- default ⇒ Proc.new {"#{self.database_schema_prefix}_OBP"}
38
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 38 property :database_schema_name, type: String, default: Proc.new {"#{self.database_schema_prefix}_OBP"}, description: 'The username for OBP Host schema. This defaults to the schema_prefix_obp.'
-
#database_schema_password ⇒ Mint::Secret (Default Value: Proc.new {Mint::Secret.new(domain.metadata_repository.schema_password.value)})
'The password to be used for OBP Host schema. Defaults to the RCU password for the domain.'
Property Attributes- from ⇒ String
- default ⇒ Proc.new {Mint::Secret.new(domain.metadata_repository.schema_password.value)}
39
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 39 property :database_schema_password, type: Mint::Secret, from: String, default: Proc.new {Mint::Secret.new(domain..schema_password.value)}, description: 'The password to be used for OBP Host schema. Defaults to the RCU password for the domain.'
-
#database_tablespace_name ⇒ String (Default Value: Proc.new {"#{domain.metadata_repository.schema_prefix}_OBP"})
'The target Unit code For OBP.'
Property Attributes- default ⇒ Proc.new {"#{domain.metadata_repository.schema_prefix}_OBP"}
41
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 41 property :database_tablespace_name, type: String, default: Proc.new {"#{domain..schema_prefix}_OBP"}, description: 'The target Unit code For OBP.'
-
#database_tablespace_options ⇒ String (Default Value: '')
'Additional options to pass to the tablespace creation.'
Property Attributes- default ⇒ ''
42
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 42 property :database_tablespace_options, type: String, default: '', description: 'Additional options to pass to the tablespace creation.'
-
#database_data_file_size ⇒ String (Default Value: '1G')
'Datafile size for OBP Host. '
Property Attributes- default ⇒ '1G'
43
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 43 property :database_data_file_size, type: String, default: '1G', description: 'Datafile size for OBP Host. '
-
#install_as_sysdba ⇒ [TrueClass, FalseClass] (Default Value: true)
'Should the sysdba privileges be used to create obphost schema, defaults to true'
Property Attributes- default ⇒ true
44
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 44 property :install_as_sysdba, type: [TrueClass, FalseClass], default: true, description: 'Should the sysdba privileges be used to create obphost schema, defaults to true'
-
#create_obp_schema ⇒ [TrueClass, FalseClass] (Default Value: true)
'Should the controller create OBP Host schema? defaults to true'
Property Attributes- default ⇒ true
46
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 46 property :create_obp_schema, type: [TrueClass, FalseClass], default: true, description: 'Should the controller create OBP Host schema? defaults to true'
-
#drop_obp_schema ⇒ [TrueClass, FalseClass] (Default Value: true)
'Should the controller drop OBP Host schema when clobbering the domain. defaults to true'
Property Attributes- default ⇒ true
47
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 47 property :drop_obp_schema, type: [TrueClass, FalseClass], default: true, description: 'Should the controller drop OBP Host schema when clobbering the domain. defaults to true'
-
#seed_obp_schema ⇒ [TrueClass, FalseClass] (Default Value: true)
'Should the controller create obp schema objects? defaults to true'
Property Attributes- default ⇒ true
48
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 48 property :seed_obp_schema, type: [TrueClass, FalseClass], default: true, description: 'Should the controller create obp schema objects? defaults to true'
-
#seed_obp_security_policy ⇒ [TrueClass, FalseClass] (Default Value: true)
'Should the controller create obp security policies in the opss schema'
Property Attributes- default ⇒ true
49
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 49 property :seed_obp_security_policy, type: [TrueClass, FalseClass], default: true, description: 'Should the controller create obp security policies in the opss schema'
-
#owsm_keystore_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The keystore-csf-key password for OBPHost. This password is used in the getOpssService call during post domain and should be the same as the csf_keystore_password for SOA and UI'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
52
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 52 property :owsm_keystore_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The keystore-csf-key password for OBPHost. This password is used in the getOpssService call during post domain and should be the same as the csf_keystore_password for SOA and UI'
-
#soa_transport ⇒ LASRpcUtils::Transport
'The transport object where OBP SOA is installed.'
Property Attributes54
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 54 property :soa_transport, type: LASRpcUtils::Transport, description: 'The transport object where OBP SOA is installed.'
-
#soa_fmw_home ⇒ String
'The fmw home for OBP SOA.'
Property Attributes55
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 55 property :soa_fmw_home, type: String, description: 'The fmw home for OBP SOA.'
-
#soa_java_home ⇒ String
'The java home for OBP SOA.'
Property Attributes56
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 56 property :soa_java_home, type: String, description: 'The java home for OBP SOA.'
-
#soa_domain_home ⇒ String
'The domain home where OBP SOA Admin server is installed.'
Property Attributes57
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 57 property :soa_domain_home, type: String, description: 'The domain home where OBP SOA Admin server is installed.'
-
#soa_opss_schema_name ⇒ String
'The username for OBP SOA OPSS schema. This is is mandatory.'
Property Attributes59
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 59 property :soa_opss_schema_name, type: String, description: 'The username for OBP SOA OPSS schema. This is is mandatory.'
-
#soa_opss_schema_password ⇒ Mint::Secret
'The password for OBP SOA OPSS schema. This is is mandatory.'
Property Attributes- from ⇒ String
60
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 60 property :soa_opss_schema_password, type: Mint::Secret, from: String, description: 'The password for OBP SOA OPSS schema. This is is mandatory.'
-
#soa_audit_schema_name ⇒ String (Default Value: Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_append"})
'The username for OBP SOA OPSS Audit schema. This defaults to the the prefix from (soa_opss_schema_name_prefix)_iau_append.'
Property Attributes- default ⇒ Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_append"}
62
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 62 property :soa_audit_schema_name, type: String, default: Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_append"}, description: 'The username for OBP SOA OPSS Audit schema. This defaults to the the prefix from (soa_opss_schema_name_prefix)_iau_append.'
-
#soa_audit_schema_password ⇒ Mint::Secret (Default Value: Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)})
'The password for OBP SOA OPSS Audit schema.'
Property Attributes- from ⇒ String
- default ⇒ Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)}
63
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 63 property :soa_audit_schema_password, type: Mint::Secret, from: String, default: Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)}, description: 'The password for OBP SOA OPSS Audit schema.'
-
#soa_audit_view_schema_name ⇒ String (Default Value: Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_viewer"})
'The username for OBP SOA OPSS View schema. This defaults to the the prefix from (soa_opss_schema_name_prefix)_iau_viewer.'
Property Attributes- default ⇒ Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_viewer"}
65
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 65 property :soa_audit_view_schema_name, type: String, default: Proc.new {self.soa_opss_schema_name.split('_')[0] + "_iau_viewer"}, description: 'The username for OBP SOA OPSS View schema. This defaults to the the prefix from (soa_opss_schema_name_prefix)_iau_viewer.'
-
#soa_audit_view_schema_password ⇒ Mint::Secret (Default Value: Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)})
'The password for OBP SOA OPSS View schema.'
Property Attributes- from ⇒ String
- default ⇒ Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)}
66
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 66 property :soa_audit_view_schema_password, type: Mint::Secret, from: String, default: Proc.new {Mint::Secret.new(self.soa_opss_schema_password.value)}, description: 'The password for OBP SOA OPSS View schema.'
-
#soa_opss_database_url ⇒ String
'The JDBC connection URL for OBP SOA OPSS schema. Format: jdbc:oracle:thin:@//host:port/service_name This is is mandatory.'
Property Attributes68
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 68 property :soa_opss_database_url, type: String, description: 'The JDBC connection URL for OBP SOA OPSS schema. Format: jdbc:oracle:thin:@//host:port/service_name This is is mandatory.'
-
#soa_jndi_url ⇒ String
'The T3(s) URL for SOA Server. e.g. t3://soahost:soa_port/soa-infra. This property is mandatory.'
Property Attributes70
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 70 property :soa_jndi_url, type: String, description: 'The T3(s) URL for SOA Server. e.g. t3://soahost:soa_port/soa-infra. This property is mandatory.'
-
#soa_foreign_provider_username ⇒ String
'The username to be used for Foreign JNDI for SOA. Mandatory.'
Property Attributes72
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 72 property :soa_foreign_provider_username, type: String, description: 'The username to be used for Foreign JNDI for SOA. Mandatory.'
-
#soa_foreign_provider_password ⇒ Mint::Secret
'The password to be used for Foreign JNDI for SOA. Mandatory.'
Property Attributes- from ⇒ String
73
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 73 property :soa_foreign_provider_password, type: Mint::Secret, from: String, description: 'The password to be used for Foreign JNDI for SOA. Mandatory.'
-
#soa_process_url ⇒ String
'The HTTP(s) URL for SOA composites.'
Property Attributes75
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 75 property :soa_process_url, type: String, description: 'The HTTP(s) URL for SOA composites.'
-
#metadata_file ⇒ String (Default Value: Proc.new {"#{obpinstall_path}/obp/ob.host.client/ob.app.client.fw/APP-INF/lib/metadata.jar"})
'The full path of the metadata file for SOA composites for OBP'
Property Attributes- default ⇒ Proc.new {"#{obpinstall_path}/obp/ob.host.client/ob.app.client.fw/APP-INF/lib/metadata.jar"}
77
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 77 property :metadata_file, type: String, default: Proc.new {"#{obpinstall_path}/obp/ob.host.client/ob.app.client.fw/APP-INF/lib/metadata.jar"}, description: 'The full path of the metadata file for SOA composites for OBP'
-
#ra_ipm_username ⇒ String (Default Value: 'ipm_username')
'The user required for ra/FCRJConnectorIPM adapter.'
Property Attributes- default ⇒ 'ipm_username'
79
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 79 property :ra_ipm_username, type: String, default: 'ipm_username', description: 'The user required for ra/FCRJConnectorIPM adapter.'
-
#ra_ipm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorIPM adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
80
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 80 property :ra_ipm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorIPM adapter.'
-
#ra_bip_username ⇒ String (Default Value: 'bip_username')
'The user required for ra/FCRJConnectorBIP adapter.'
Property Attributes- default ⇒ 'bip_username'
82
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 82 property :ra_bip_username, type: String, default: 'bip_username', description: 'The user required for ra/FCRJConnectorBIP adapter.'
-
#ra_bip_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorBIP adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
83
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 83 property :ra_bip_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorBIP adapter.'
-
#ra_odi_username ⇒ String (Default Value: 'odi_username')
'The user required for ra/FCRJConnectorODI adapter.'
Property Attributes- default ⇒ 'odi_username'
85
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 85 property :ra_odi_username, type: String, default: 'odi_username', description: 'The user required for ra/FCRJConnectorODI adapter.'
-
#ra_odi_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorODI adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
86
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 86 property :ra_odi_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorODI adapter.'
-
#ra_oim_username ⇒ String (Default Value: 'oim_username')
'The user required for ra/FCRJConnectorOIM adapter.'
Property Attributes- default ⇒ 'oim_username'
88
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 88 property :ra_oim_username, type: String, default: 'oim_username', description: 'The user required for ra/FCRJConnectorOIM adapter.'
-
#ra_oim_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorOIM adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
89
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 89 property :ra_oim_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorOIM adapter.'
-
#ra_wcm_username ⇒ String (Default Value: 'wcm_username')
'The user required for ra/FCRJConnectorWCM adapter.'
Property Attributes- default ⇒ 'wcm_username'
91
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 91 property :ra_wcm_username, type: String, default: 'wcm_username', description: 'The user required for ra/FCRJConnectorWCM adapter.'
-
#ra_wcm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorWCM adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
92
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 92 property :ra_wcm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorWCM adapter.'
-
#ra_offline_channel_username ⇒ String (Default Value: 'offlineuser')
'The user required for ra/FCRJConnectorOFFLINE_CHANNEL adapter.'
Property Attributes- default ⇒ 'offlineuser'
94
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 94 property :ra_offline_channel_username, type: String, default: 'offlineuser', description: 'The user required for ra/FCRJConnectorOFFLINE_CHANNEL adapter.'
-
#ra_offline_channel_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorOFFLINE_CHANNEL adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
95
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 95 property :ra_offline_channel_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorOFFLINE_CHANNEL adapter.'
-
#ra_saml_issuer_username ⇒ String (Default Value: 'saml_issuer')
'The user required for ra/FCRJConnectorSAML_ISSUER adapter.'
Property Attributes- default ⇒ 'saml_issuer'
97
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 97 property :ra_saml_issuer_username, type: String, default: 'saml_issuer', description: 'The user required for ra/FCRJConnectorSAML_ISSUER adapter.'
-
#ra_saml_issuer_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorSAML_ISSUER adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
98
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 98 property :ra_saml_issuer_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorSAML_ISSUER adapter.'
-
#ra_bpel_encryption_username ⇒ String (Default Value: 'bpel_encryption')
'The user required for ra/FCRJConnectorBPEL_ENCRYPTION adapter.'
Property Attributes- default ⇒ 'bpel_encryption'
100
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 100 property :ra_bpel_encryption_username, type: String, default: 'bpel_encryption', description: 'The user required for ra/FCRJConnectorBPEL_ENCRYPTION adapter.'
-
#ra_bpel_encryption_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorBPEL_ENCRYPTION adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
101
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 101 property :ra_bpel_encryption_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorBPEL_ENCRYPTION adapter.'
-
#ra_ftp_ipm_username ⇒ String (Default Value: 'ipm_username')
'The user required for ra/FCRJConnectorFTP_IPM adapter.'
Property Attributes- default ⇒ 'ipm_username'
103
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 103 property :ra_ftp_ipm_username, type: String, default: 'ipm_username', description: 'The user required for ra/FCRJConnectorFTP_IPM adapter.'
-
#ra_ftp_ipm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorFTP_IPM adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
104
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 104 property :ra_ftp_ipm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorFTP_IPM adapter.'
-
#ra_bip_usr_username ⇒ String (Default Value: 'bip_usr_username')
'The user required for ra/FCRJConnectorBIP_USR adapter.'
Property Attributes- default ⇒ 'bip_usr_username'
106
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 106 property :ra_bip_usr_username, type: String, default: 'bip_usr_username', description: 'The user required for ra/FCRJConnectorBIP_USR adapter.'
-
#ra_bip_usr_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorBIP_USR adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
107
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 107 property :ra_bip_usr_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorBIP_USR adapter.'
-
#ra_soa_purging_username ⇒ String (Default Value: 'soa_purging_username')
'The user required for ra/FCRJConnectorSOA_PURGING adapter.'
Property Attributes- default ⇒ 'soa_purging_username'
109
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 109 property :ra_soa_purging_username, type: String, default: 'soa_purging_username', description: 'The user required for ra/FCRJConnectorSOA_PURGING adapter.'
-
#ra_soa_purging_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorSOA_PURGING adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
110
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 110 property :ra_soa_purging_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorSOA_PURGING adapter.'
-
#ra_soa_outbound_username ⇒ String (Default Value: 'soa_outbound_username')
'The user required for ra/FCRJConnectorSOA adapter.'
Property Attributes- default ⇒ 'soa_outbound_username'
112
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 112 property :ra_soa_outbound_username, type: String, default: 'soa_outbound_username', description: 'The user required for ra/FCRJConnectorSOA adapter.'
-
#ra_soa_outbound_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorSOA adapter.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
113
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 113 property :ra_soa_outbound_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorSOA adapter.'
-
#ra_atm_username ⇒ String (Default Value: 'atm_username')
'The user required for ra/FCRJConnectorATMUSER adapter.'
Property Attributes- default ⇒ 'atm_username'
115
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 115 property :ra_atm_username, type: String, default: 'atm_username', description: 'The user required for ra/FCRJConnectorATMUSER adapter.'
-
#ra_atm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorSOA FCRJConnectorATMUSER.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
116
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 116 property :ra_atm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorSOA FCRJConnectorATMUSER.'
-
#ra_pos_username ⇒ String (Default Value: 'pos_username')
'The user required for ra/FCRJConnectorPOSUSER adapter.'
Property Attributes- default ⇒ 'pos_username'
118
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 118 property :ra_pos_username, type: String, default: 'pos_username', description: 'The user required for ra/FCRJConnectorPOSUSER adapter.'
-
#ra_pos_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorPOSUSER FCRJConnectorATMUSER.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
119
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 119 property :ra_pos_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorPOSUSER FCRJConnectorATMUSER.'
-
#ra_dms_host_username ⇒ String (Default Value: 'dms_host_username')
'The user required for ra/DMSHostConnector adapter.'
Property Attributes- default ⇒ 'dms_host_username'
121
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 121 property :ra_dms_host_username, type: String, default: 'dms_host_username', description: 'The user required for ra/DMSHostConnector adapter.'
-
#ra_dms_host_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/DMSHostConnector .'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
122
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 122 property :ra_dms_host_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/DMSHostConnector .'
-
#ra_dms_ui_username ⇒ String (Default Value: 'dms_ui_username')
'The user required for ra/DMSUIConnector adapter.'
Property Attributes- default ⇒ 'dms_ui_username'
124
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 124 property :ra_dms_ui_username, type: String, default: 'dms_ui_username', description: 'The user required for ra/DMSUIConnector adapter.'
-
#ra_dms_ui_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/DMSUIConnector.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
125
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 125 property :ra_dms_ui_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/DMSUIConnector.'
-
#ra_edn_username ⇒ String (Default Value: 'dms_ui_username')
'The user required for ra/FCRJConnectorEDN adapter.'
Property Attributes- default ⇒ 'dms_ui_username'
127
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 127 property :ra_edn_username, type: String, default: 'dms_ui_username', description: 'The user required for ra/FCRJConnectorEDN adapter.'
-
#ra_edn_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorEDN.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
128
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 128 property :ra_edn_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorEDN.'
-
#ra_cm_bp_batch_username ⇒ String (Default Value: 'cm_bp_batch_username')
'The user required for ra/FCRJConnectorCM_BIP_BATCH adapter.'
Property Attributes- default ⇒ 'cm_bp_batch_username'
130
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 130 property :ra_cm_bp_batch_username, type: String, default: 'cm_bp_batch_username', description: 'The user required for ra/FCRJConnectorCM_BIP_BATCH adapter.'
-
#ra_cm_bp_batch_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorCM_BIP_BATCH.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
131
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 131 property :ra_cm_bp_batch_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorCM_BIP_BATCH.'
-
#ra_ftp_ipm_batch_username ⇒ String (Default Value: 'ftp_ipm_username')
'The user required for ra/FCRJConnectorFTP_IPMBatch adapter.'
Property Attributes- default ⇒ 'ftp_ipm_username'
133
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 133 property :ra_ftp_ipm_batch_username, type: String, default: 'ftp_ipm_username', description: 'The user required for ra/FCRJConnectorFTP_IPMBatch adapter.'
-
#ra_ftp_ipm_batch_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorFTP_IPMBatch.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
134
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 134 property :ra_ftp_ipm_batch_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorFTP_IPMBatch.'
-
#ra_bam_ws_username ⇒ String (Default Value: 'bam_ws_username')
'The user required for ra/FCRJConnectorBAMWS adapter.'
Property Attributes- default ⇒ 'bam_ws_username'
136
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 136 property :ra_bam_ws_username, type: String, default: 'bam_ws_username', description: 'The user required for ra/FCRJConnectorBAMWS adapter.'
-
#ra_bam_ws_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorBAMWS.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
137
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 137 property :ra_bam_ws_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorBAMWS.'
-
#ra_card_username ⇒ String (Default Value: 'card_username')
'The user required for ra/FCRJConnectorKEYSTORE_CARD adapter.'
Property Attributes- default ⇒ 'card_username'
139
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 139 property :ra_card_username, type: String, default: 'card_username', description: 'The user required for ra/FCRJConnectorKEYSTORE_CARD adapter.'
-
#ra_card_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorKEYSTORE_CARD.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
140
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 140 property :ra_card_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorKEYSTORE_CARD.'
-
#ra_rule_username ⇒ String (Default Value: 'keystore_username')
'The user required for ra/FCRJConnectorKEYSTORE_RULE adapter.'
Property Attributes- default ⇒ 'keystore_username'
142
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 142 property :ra_rule_username, type: String, default: 'keystore_username', description: 'The user required for ra/FCRJConnectorKEYSTORE_RULE adapter.'
-
#ra_rule_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorKEYSTORE_RULE.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
143
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 143 property :ra_rule_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorKEYSTORE_RULE.'
-
#ra_ftp_bip_username ⇒ String (Default Value: 'ftp_bip_username')
'The user required for ra/FCRJConnectorFTP_BIP adapter.'
Property Attributes- default ⇒ 'ftp_bip_username'
144
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 144 property :ra_ftp_bip_username, type: String, default: 'ftp_bip_username', description: 'The user required for ra/FCRJConnectorFTP_BIP adapter.'
-
#ra_ftp_bip_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorFTP_BIP.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
145
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 145 property :ra_ftp_bip_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorFTP_BIP.'
-
#ra_ws_mft_username ⇒ String (Default Value: 'ws_mft_username')
'The user required for ra/FCRJConnectorWS_MFT adapter.'
Property Attributes- default ⇒ 'ws_mft_username'
146
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 146 property :ra_ws_mft_username, type: String, default: 'ws_mft_username', description: 'The user required for ra/FCRJConnectorWS_MFT adapter.'
-
#ra_ws_mft_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorWS_MFT.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
147
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 147 property :ra_ws_mft_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorWS_MFT.'
-
#ra_op_username ⇒ String (Default Value: 'op_username')
'The user required for ra/OBPConnector_OP adapter.'
Property Attributes- default ⇒ 'op_username'
148
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 148 property :ra_op_username, type: String, default: 'op_username', description: 'The user required for ra/OBPConnector_OP adapter.'
-
#ra_op_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/OBPConnector_OP.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
149
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 149 property :ra_op_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/OBPConnector_OP.'
-
#ra_obdx_username ⇒ String (Default Value: 'obdx_username')
'The user required for ra/FCRJConnectorOBDX adapter.'
Property Attributes- default ⇒ 'obdx_username'
151
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 151 property :ra_obdx_username, type: String, default: 'obdx_username', description: 'The user required for ra/FCRJConnectorOBDX adapter.'
-
#ra_obdx_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorOBDX.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
152
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 152 property :ra_obdx_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorOBDX.'
-
#ra_common_username ⇒ String (Default Value: 'common_username')
'The user required for ra/FCRJConnectorCOMMON adapter.'
Property Attributes- default ⇒ 'common_username'
154
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 154 property :ra_common_username, type: String, default: 'common_username', description: 'The user required for ra/FCRJConnectorCOMMON adapter.'
-
#ra_common_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorCOMMON.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
155
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 155 property :ra_common_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorCOMMON.'
-
#ra_pm_username ⇒ String (Default Value: 'pm_username')
'The user required for ra/FCRJConnectorPM adapter.'
Property Attributes- default ⇒ 'pm_username'
157
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 157 property :ra_pm_username, type: String, default: 'pm_username', description: 'The user required for ra/FCRJConnectorPM adapter.'
-
#ra_pm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorPM.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
158
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 158 property :ra_pm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorPM.'
-
#ra_lending_username ⇒ String (Default Value: 'lending_username')
'The user required for ra/FCRJConnectorLENDING adapter.'
Property Attributes- default ⇒ 'lending_username'
161
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 161 property :ra_lending_username, type: String, default: 'lending_username', description: 'The user required for ra/FCRJConnectorLENDING adapter.'
-
#ra_lending_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorLENDING.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
162
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 162 property :ra_lending_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorLENDING.'
-
#ra_deposits_username ⇒ String (Default Value: 'deposits_username')
'The user required for ra/FCRJConnectorDEPOSITS adapter.'
Property Attributes- default ⇒ 'deposits_username'
164
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 164 property :ra_deposits_username, type: String, default: 'deposits_username', description: 'The user required for ra/FCRJConnectorDEPOSITS adapter.'
-
#ra_deposits_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorDEPOSITS.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
165
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 165 property :ra_deposits_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorDEPOSITS.'
-
#ra_fw_username ⇒ String (Default Value: 'fw_username')
'The user required for ra/FCRJConnectorFW adapter.'
Property Attributes- default ⇒ 'fw_username'
167
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 167 property :ra_fw_username, type: String, default: 'fw_username', description: 'The user required for ra/FCRJConnectorFW adapter.'
-
#ra_fw_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorFW.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
168
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 168 property :ra_fw_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorFW.'
-
#ra_collection_username ⇒ String (Default Value: 'collection_username')
'The user required for ra/FCRJConnectorCOLLECTION adapter.'
Property Attributes- default ⇒ 'collection_username'
170
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 170 property :ra_collection_username, type: String, default: 'collection_username', description: 'The user required for ra/FCRJConnectorCOLLECTION adapter.'
-
#ra_collection_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorCOLLECTION.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
171
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 171 property :ra_collection_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorCOLLECTION.'
-
#ra_or_username ⇒ String (Default Value: 'or_username')
'The user required for ra/FCRJConnectorOR adapter.'
Property Attributes- default ⇒ 'or_username'
173
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 173 property :ra_or_username, type: String, default: 'or_username', description: 'The user required for ra/FCRJConnectorOR adapter.'
-
#ra_or_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorOR.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
174
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 174 property :ra_or_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorOR.'
-
#ra_party_username ⇒ String (Default Value: 'party_username')
'The user required for ra/FCRJConnectorPARTY adapter.'
Property Attributes- default ⇒ 'party_username'
176
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 176 property :ra_party_username, type: String, default: 'party_username', description: 'The user required for ra/FCRJConnectorPARTY adapter.'
-
#ra_party_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorPARTY.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
177
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 177 property :ra_party_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorPARTY.'
-
#ra_prod_proc_username ⇒ String (Default Value: 'prod_proc_username')
'The user required for ra/FCRJConnectorPRODPROC adapter.'
Property Attributes- default ⇒ 'prod_proc_username'
179
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 179 property :ra_prod_proc_username, type: String, default: 'prod_proc_username', description: 'The user required for ra/FCRJConnectorPRODPROC adapter.'
-
#ra_prod_proc_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorPRODPROC.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
180
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 180 property :ra_prod_proc_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorPRODPROC.'
-
#ra_recovery_username ⇒ String (Default Value: 'recovery_username')
'The user required for ra/FCRJConnectorRECOVERY adapter.'
Property Attributes- default ⇒ 'recovery_username'
182
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 182 property :ra_recovery_username, type: String, default: 'recovery_username', description: 'The user required for ra/FCRJConnectorRECOVERY adapter.'
-
#ra_recovery_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorRECOVERY.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
183
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 183 property :ra_recovery_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorRECOVERY.'
-
#ra_pricing_username ⇒ String (Default Value: 'pricing_username')
'The user required for ra/FCRJConnectorPRICING adapter.'
Property Attributes- default ⇒ 'pricing_username'
185
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 185 property :ra_pricing_username, type: String, default: 'pricing_username', description: 'The user required for ra/FCRJConnectorPRICING adapter.'
-
#ra_pricing_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorPRICING.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
186
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 186 property :ra_pricing_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorPRICING.'
-
#ra_lcm_username ⇒ String (Default Value: 'lcm_username')
'The user required for ra/FCRJConnectorLCM adapter.'
Property Attributes- default ⇒ 'lcm_username'
188
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 188 property :ra_lcm_username, type: String, default: 'lcm_username', description: 'The user required for ra/FCRJConnectorLCM adapter.'
-
#ra_lcm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorLCM.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
189
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 189 property :ra_lcm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorLCM.'
-
#ra_mdm_username ⇒ String (Default Value: 'mdm_username')
'The user required for ra/FCRJConnectorMDM adapter.'
Property Attributes- default ⇒ 'mdm_username'
191
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 191 property :ra_mdm_username, type: String, default: 'mdm_username', description: 'The user required for ra/FCRJConnectorMDM adapter.'
-
#ra_mdm_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorMDM.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
192
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 192 property :ra_mdm_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorMDM.'
-
#ra_communications_username ⇒ String (Default Value: 'communications_username')
'The user required for ra/FCRJConnectorCOMMUNICATIONS adapter.'
Property Attributes- default ⇒ 'communications_username'
194
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 194 property :ra_communications_username, type: String, default: 'communications_username', description: 'The user required for ra/FCRJConnectorCOMMUNICATIONS adapter.'
-
#ra_communications_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorCOMMUNICATIONS.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
195
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 195 property :ra_communications_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorCOMMUNICATIONS.'
-
#ra_app_capture_username ⇒ String (Default Value: 'appcapture_username')
'The user required for ra/FCRJConnectorAPPCAPTURE adapter.'
Property Attributes- default ⇒ 'appcapture_username'
197
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 197 property :ra_app_capture_username, type: String, default: 'appcapture_username', description: 'The user required for ra/FCRJConnectorAPPCAPTURE adapter.'
-
#ra_app_capture_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorAPPCAPTURE.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
198
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 198 property :ra_app_capture_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorAPPCAPTURE.'
-
#ra_ejb_subject_username ⇒ String (Default Value: 'ejb_subject_username')
'The user required for ra/FCRJConnectorEJBSubject adapter.'
Property Attributes- default ⇒ 'ejb_subject_username'
200
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 200 property :ra_ejb_subject_username, type: String, default: 'ejb_subject_username', description: 'The user required for ra/FCRJConnectorEJBSubject adapter.'
-
#ra_ejb_subject_password ⇒ Mint::Secret (Default Value: 'BAML6L0VFuO')
'The password for the user required for ra/FCRJConnectorEJBSubject.'
Property Attributes- from ⇒ String
- default ⇒ 'BAML6L0VFuO'
201
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 201 property :ra_ejb_subject_password, type: Mint::Secret, from: String, default: 'BAML6L0VFuO', description: 'The password for the user required for ra/FCRJConnectorEJBSubject.'
-
#version ⇒ String (Default Value: Proc.new { get_obp_version })
Property Attributes- default ⇒ Proc.new { get_obp_version }
- cached_proc ⇒ true
202
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 202 property :version, type: String, default: Proc.new { get_obp_version }, cached_proc: true
-
#customized_credential_mappers ⇒ Array of ⇒ Hash
'Array of additional credential mappers to be created. Format: customized_credential_mappers: { "destination_name": "ra/FCRJConnectorIPM", "username": "weblogic", "password": "sample_password", "mapping_username": "weblogic_ra_default", "application_name": "com.ofss.fc.app.connector", "module_name": "com.ofss.fc.connector.rar", "eis_name": "Sample" }. destination_name, username and password are mandatory, rest all are optional and will default to values mentioned.'
Property Attributes204
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 204 property :customized_credential_mappers, type: Hash, array: true, description: 'Array of additional credential mappers to be created. Format: customized_credential_mappers: { "destination_name": "ra/FCRJConnectorIPM", "username": "weblogic", "password": "sample_password", "mapping_username": "weblogic_ra_default", "application_name": "com.ofss.fc.app.connector", "module_name": "com.ofss.fc.connector.rar", "eis_name": "Sample" }. destination_name, username and password are mandatory, rest all are optional and will default to values mentioned.'
-
#default_obphost_memory ⇒ String (Default Value: "8G")
'The default maximum memory for obphost managed server'
Property Attributes- default ⇒ "8G"
206
# File 'src/oracle-obp/lib/oracle-obp/host-template.rb', line 206 property :default_obphost_memory, type: String, default: "8G", description: 'The default maximum memory for obphost managed server'
-
#name ⇒ String
For 12c style templates, this is the actual template name. For 11g, it's just a reference
Property Attributes- required ⇒ true
73
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 73 property :name, type: String, required: true
-
#template_version ⇒ String
The version of the template to use, if multiple versions are available
Property Attributes75
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 75 property :template_version, type: String
-
#template_jar ⇒ String
For oldstyle templates, this is the jar file on the filesystem. It is not required for 12c style templates
Property Attributes77
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 77 property :template_jar, type: String
-
#domain ⇒ MintPress::OracleWeblogic::Domain
Our parent domain
Property Attributes79
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 79 property :domain, type: MintPress::OracleWeblogic::Domain
-
#metadata_repository ⇒ MintPress::OracleWeblogic::MetadataRepository
Which metadata repository does this template use for its database storage? The will default to the default repository of the domain
Property Attributes81
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 81 property :metadata_repository, type: MintPress::OracleWeblogic::MetadataRepository
-
#template_type ⇒ Symbol (Default Value: :newstyle)
What kind of template are we applying? :newstyle - 12c style (i.e. selectTemplate/loadTemplate) :newstyle_custom - 12c, selectTemplateCustom :oldstyle - jar file based template (i.e. addTemplate)
Property Attributes- default ⇒ :newstyle
87
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 87 property :template_type, type: Symbol, default: :newstyle
-
#pattern ⇒ String
The pattern of the servers - if inbuilt_servers is also defined, servers will be _renamed_ to match this pattern
Property Attributes90
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 90 property :pattern, type: String
-
#server_names ⇒ Hash of ⇒ String
If a more complex renaming than pattern provides is requred, such as for a multi-server template, server_names can be specified as a hash an example of this is if your template has both soa_serverX and humantask_serverX, you can rename them with this hash: `{ "soa_server" => "my_soa", "humantask_server" => "my_humantask }`
Property Attributes94
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 94 property :server_names, type: String, hash: true
-
#targets ⇒ Array of ⇒ [Server, Cluster] (Default Value: Proc.new { domain.servers.list_by_glob(self.pattern) })
The list of servers which match this template as per server.pattern
Property Attributes- default ⇒ Proc.new { domain.servers.list_by_glob(self.pattern) }
96
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 96 property :targets, type: [Server, Cluster], array: true, default: Proc.new { domain.servers.list_by_glob(self.pattern) }
-
#inbuilt_servers ⇒ Array of ⇒ String
inbuilt_servers defines which servers are included out of the box with the template - there the major reason this is important, is it drives the server renaming. This is usually defined by a subclass
Property Attributes99
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 99 property :inbuilt_servers, type: String, array: true
-
#reload_domain ⇒ [TrueClass, FalseClass] (Default Value: false)
Control whether to reload the domain before _and_ after applying the template
Property Attributes- default ⇒ false
101
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 101 property :reload_domain, type: [TrueClass, FalseClass], default: false
-
#reload_after ⇒ [TrueClass, FalseClass] (Default Value: false)
Just reload the domain _after_ applying the template, but not before
Property Attributes- default ⇒ false
103
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 103 property :reload_after, type: [TrueClass, FalseClass], default: false
-
#reload_before ⇒ [TrueClass, FalseClass] (Default Value: false)
Just reload the domain _before_ applying the template, but not after
Property Attributes- default ⇒ false
105
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 105 property :reload_before, type: [TrueClass, FalseClass], default: false
-
#update_jdbc ⇒ [TrueClass, FalseClass] (Default Value: true)
Do we also update the JDBC resources to point to clusters after this, or do we trust getDatabaseDefaults to do it for us? For 12c templates, you often want false here, since getDatabaseDefaults() is supposed to fill them in. However you would want it set to true for 11g style templates, and certain 12c templates will miss some data sources without it.
Property Attributes- default ⇒ true
109
# File 'src/oracle-weblogic/lib/oracle-weblogic/model/template.rb', line 109 property :update_jdbc, type: [TrueClass, FalseClass], default: true
Properties (Read Only)
Constant Summary
Constants included from MintLogger
MintLogger::DEBUG, MintLogger::ERROR, MintLogger::FATAL, MintLogger::INFO, MintLogger::UNKNOWN, MintLogger::VERBOSE, MintLogger::WARN
Instance Attribute Summary
Attributes inherited from MintPress::OracleWeblogic::Template
#Domain, #MetadataRepository, #inbuilt_servers, #name, #pattern, #targets, #template_jar, #template_type, #template_version
Attributes included from Mixins::Properties
#autopush_set_cache, #dynamic_create, #harvest_on_access, #harvest_undefined_only, #harvested, #tree_root
Instance Method Summary collapse
-
#apply(wlst, repository: nil) ⇒ Object
Override apply for OBP Host since it does not uses selectTemplate Mechanism.
- #configure_obp_host ⇒ Object
-
#create_batch_security_keystore(wlst) ⇒ Object
Create the keystore for OWSM for Batch.
-
#create_jms_resources ⇒ Object
Create JMS Resources.
-
#create_obp_database_schema ⇒ Object
Creates the OBP Database Schema.
-
#deploy_obp_batch ⇒ Object
OBP Batch Applications.
-
#deploy_obp_collection_recovery ⇒ Object
Deploy Collection.
-
#deploy_obp_common ⇒ Object
OBP Common Apps.
-
#deploy_obp_deposits ⇒ Object
Deploy Loan.
-
#deploy_obp_generic(generic_app_library:, generic_client_library:, generic_app_name:) ⇒ Object
Generic app deploy.
-
#deploy_obp_lcm ⇒ Object
Deploy LCM.
-
#deploy_obp_loan ⇒ Object
Deploy Loan.
-
#deploy_obp_origination ⇒ Object
Deploy Origination.
-
#deploy_obp_party ⇒ Object
Deploy Party.
-
#deploy_obp_pricing ⇒ Object
Deploy Pricing.
-
#deploy_obp_product_manufacturing ⇒ Object
Deploy Product Manufacturing.
-
#drop_obp_database_schema ⇒ Object
Drop the OBP Database Schema.
-
#fresh_obp_security_policy(java_args: '') ⇒ Object
Load OBP Policies This function will seed fresh policies into OBP OPSS store.
-
#get_db_connection(transport_host) ⇒ Object
returns a db connection.
- #get_obp_verison ⇒ Object
-
#initialize(opts) ⇒ GenericHostTemplate
constructor
A new instance of GenericHostTemplate.
-
#obp_database_schema_exists? ⇒ Boolean
Returns true/false if the schema exists.
-
#post_first_admin_start ⇒ Object
This is the entry point for us for integration with old world TODO Change me at a suitable time.
-
#post_metadata_drop(repository) ⇒ Object
Method to drop the OBPHOST schema after the RCU has been dropped, this overrides the method in the Template class.
-
#pre_managed_start ⇒ Object
Call the Credential Mapper during the pre_managed_server start hook.
- #pre_select ⇒ Object
-
#refresh_obp_security_policy(java_args: '') ⇒ Object
Refresh OBP Policies This function will refresh policies into OBP OPSS store.
-
#seed_obp_database_schema ⇒ Object
Seeds the OBP Database with Schema Objects.
-
#update_obp_soa_metadata ⇒ Object
This updates the soa metadata under fmw_home/obpinstall/obp/ob.host.client/ob.app.client.fw/APP-INF/lib for all wsdl.
-
#upgrade_all_expressions ⇒ Object
This function runs the upgradeAllExpressions.sh under $OBP_HOME/obp/rulescripts.
-
#upgrade_all_filters ⇒ Object
This function runs the upgradeAllFilters.sh under $OBP_HOME/obp/rulescripts.
-
#upgrade_all_rules ⇒ Object
This function runs the upgradeAllRules.sh under $OBP_HOME/obp/rulescripts.
Methods included from OracleBankingPlatformUtils
#add_credential_mappers, #add_customized_credential_mappers, #configure_obp_loggers, #copy_local_file, #get_property_from_target, #installed_version, #remote_version, #seed_policy_store, #update_credential_mapper, #update_fmw_home, #version_numeric
Methods inherited from MintPress::OracleWeblogic::Template
#finalize_load, #handle_rename, #mbean_create, #post_apply, #post_domain, #post_managed_start, #post_metadata_create, #post_select, #pre_first_admin_start, #pre_metadata_create, #pre_metadata_drop, register_template_name
Methods included from MintPress::OracleWeblogic::MBeanUtils
#assign_object_by_identity, #assign_object_by_identity_from, #bean_is_changed?, #dump_metadata, #dump_tree_metadata, #get_item_by_identity_name, #get_item_by_identity_name_from, #get_parent_by_identity_name, #harvest, #harvest_anew, #harvest_item_by_name, #harvest_item_by_type, #harvest_wlst, #harvesters, #harvesting, #longname, #lookup_mintpress_by_mbean, #mbean_by_url, #process_mbeans, #register_mbean_url
Methods included from Mixins::Properties
#[], #[]=, #add_validate_report_result, #armour_set_property, #array_contains?, #array_is_a?, #check_autopush, #check_stack_overflow, #clone_property_object, #cloner_handle_single_property, #coerce_single, #contains_as_string?, #display_validate_report_result, #double_initialize?, #dump_to_hash, #find_parent, #find_parent_by_identity, #generate_accessor_functions, #get_canonical_renamed, #get_from_opts, #get_my_name, #get_property, #get_property_item, #has?, included, #initialize_validate_report, #inspect, #is_cloned_object?, #is_mintpress_object?, #is_probably_canonical?, #is_set?, #local_debug, #local_info, #local_verbose, #mintpress_property_definitions, #place_object_by_identity, #process_properties, #prop_set?, #property, #property_definitions, #property_details, #property_is_simple_object?, #push_root!, #require_property, #require_update, #retrieve_docstring, #sanitize, #set_map_dirty, #set_property, #set_property_item, #show_short_array, #strip_defaults!, #synchronize, #uncloned_property_definitions, #update_map, #validate, #validate_generic, #validate_properties, #validate_property, #validate_required, #version_allowed?, #weakref
Methods included from MintLogger::Utils::Common
#boolean_val, #has_value?, #no_value?, #nvl, #path_as_symbol, #ruby_level_to_send
Methods included from MintPress::OracleWeblogic::Utils
#activate_list, #already_traversed, #announce_self, #bean_type, #build_activate_list, #clear_property_sheet_cache, #create_generic, #create_mbean_components, #delete, #destroy_generic, #empty_mbean?, #execute_script, #exists?, #fast_ls_all, #fast_ls_folder, #fast_ls_object, #fast_ls_object_map, #find_cluster, #find_runtime_path_in_rest, #find_server, #full_url, #get, #get_all_self_names, #get_identity, #get_local_wlst_session, #get_matching_self_names, #get_property_from_target, #get_property_from_target_rest, #get_property_from_target_wlst, #get_property_from_target_wlst_impl, #get_property_sheet, #get_rest_item, #get_rest_url_for_parent, #get_rest_url_for_self, #get_servers, #get_servers_rest, #get_servers_wlst, #get_wl_home, #globmatch?, #handle_create, #http_delete, #http_get, #http_post, #http_put, included, #invalidate_session, #is_meta_object?, #longclass, #massage_return, #mbean_components, #mbean_exists?, #mbean_lookup, #mbean_properties, #mbean_to_hash, #meta_list?, #my_short_name, #perform_method_generic, #perform_runtime_call_generic_rest, #perform_runtime_method_generic, #post, #raise_http_exception, #remove, #request_headers, #reset_activate_list, #rest_activate_change, #rest_create_generic, #rest_create_mbean_components, #rest_destroy_self, #rest_edit_url, #rest_has_changes, #rest_idempotent_create, #rest_locked, #rest_nonedit_url, #rest_start_change, #rest_undo_change, #runtime_introspection, #shortclass, #start_with_async, #state_with_net_ping, #stop_with_async, #to_nested, #wlst_cd_to, #wlst_create_generic, #wlst_destroy_self, #wlst_find_object, #wlst_find_parent_object, #wlst_generic_mbean_update_all, #wlst_idempotent_create, #wlst_update_mbean