Class: Net::TTI::ConnectionParameters
- Inherits:
-
Object
- Object
- Net::TTI::ConnectionParameters
- Defined in:
- lib/net/tti/connection.rb
Instance Attribute Summary collapse
-
#architecture ⇒ Object
Returns the value of attribute architecture.
-
#platform ⇒ Object
Returns the value of attribute platform.
-
#tns_version ⇒ Object
Returns the value of attribute tns_version.
-
#ttc_version ⇒ Object
Returns the value of attribute ttc_version.
Instance Method Summary collapse
Instance Attribute Details
#architecture ⇒ Object
Returns the value of attribute architecture.
8 9 10 |
# File 'lib/net/tti/connection.rb', line 8 def architecture @architecture end |
#platform ⇒ Object
Returns the value of attribute platform.
7 8 9 |
# File 'lib/net/tti/connection.rb', line 7 def platform @platform end |
#tns_version ⇒ Object
Returns the value of attribute tns_version.
10 11 12 |
# File 'lib/net/tti/connection.rb', line 10 def tns_version @tns_version end |
#ttc_version ⇒ Object
Returns the value of attribute ttc_version.
9 10 11 |
# File 'lib/net/tti/connection.rb', line 9 def ttc_version @ttc_version end |
Instance Method Details
#to_s ⇒ Object
12 13 14 15 16 17 |
# File 'lib/net/tti/connection.rb', line 12 def to_s return "Platform: #{@platform||nil}" + "; Architecture: #{@architecture||nil}" + "; TTC? Version: #{@ttc_version||nil}" + "; TNS Version: #{@tns_version||nil}" end |