Class: MintPress::Siebel::DBDatasource

Inherits:
Object
  • Object
show all
Includes:
Mixins::Properties
Defined in:
src/oracle-siebel/lib/oracle-siebel/db_datastore.rb

Properties (Read/Write)

  • #name ⇒ String
    This difference, internally, between advanced and simple, is advanced takes a connection string, whereass simple takes db_host/db_port

    Property Attributes
    • requiredtrue
    
    
    12
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 12
    
    property :name, type: String, required: true
  • #advanced ⇒ [TrueClass, FalseClass]

    Property Attributes
    • requiredtrue
    
    
    13
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 13
    
    property :advanced, type: [TrueClass, FalseClass], required: true
  • #db_host ⇒ String

    Property Attributes
    • requiredtrue
    
    
    14
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 14
    
    property :db_host, required: true, type: String
  • #db_port ⇒ Integer

    Property Attributes
    • requiredtrue
    
    
    15
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 15
    
    property :db_port, required: true, type: Integer
  • #db_service_name ⇒ String

    Property Attributes
    • requiredtrue
    
    
    16
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 16
    
    property :db_service_name, type: String, required: true
  • #sql_style ⇒ String (Default Value: 'Oracle')

    Property Attributes
    • default'Oracle'
    
    
    17
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 17
    
    property :sql_style, type: String, default: 'Oracle'
  • #connection_string ⇒ String

    Property Attributes
    
    
    18
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 18
    
    property :connection_string, type: String
  • #single_sign_on_sso ⇒ [TrueClass, FalseClass] (Default Value: false)

    Property Attributes
    • defaultfalse
    
    
    19
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 19
    
    property :single_sign_on_sso, type: [TrueClass, FalseClass], default: false
  • #trust_token_sso ⇒ String

    Property Attributes
    
    
    20
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 20
    
    property :trust_token_sso, type: String
  • #shared_db_username_sso ⇒ String

    Property Attributes
    
    
    21
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 21
    
    property :shared_db_username_sso, type: String
  • #shared_db_password_sso ⇒ String

    Property Attributes
    
    
    22
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 22
    
    property :shared_db_password_sso, type: String
  • #table_owner ⇒ String (Default Value: 'SIEBEL')

    Property Attributes
    • default'SIEBEL'
    
    
    23
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 23
    
    property :table_owner, type: String, default: 'SIEBEL'
  • #hash_user_password ⇒ [TrueClass, FalseClass] (Default Value: false)

    Property Attributes
    • defaultfalse
    
    
    24
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 24
    
    property :hash_user_password, type: [TrueClass, FalseClass], default: false
  • #hash_algorithm ⇒ String (Default Value: 'SHA1')

    Property Attributes
    • default'SHA1'
    
    
    25
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 25
    
    property :hash_algorithm, type: String, default: 'SHA1'
  • #crc ⇒ String

    Property Attributes
    
    
    26
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 26
    
    property :crc, type: String
  • #type (Default Value: "DB")

    Property Attributes
    • default"DB"
    
    
    28
    # File 'src/oracle-siebel/lib/oracle-siebel/db_datastore.rb', line 28
    
    property :type, default: "DB"

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 included from Mixins::Properties

#autopush_set_cache, #dynamic_create, #harvest_on_access, #harvest_undefined_only, #harvested, #tree_root

Instance Method Summary collapse

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

Constructor Details

#initialize(opts = {}) ⇒ DBDatasource

Returns a new instance of DBDatasource.

Instance Method Details

#get_ds_configObject

#get_property_from_target(prop) ⇒ Object