Class: SSONameValuePair
- Inherits:
-
Object
- Object
- SSONameValuePair
- Defined in:
- lib/bak_wsdl_classes.rb,
lib/sso_identity_manager_classes.rb
Overview
http://josso.org/gateway/identity/service/ws/implSSONameValuePair
Constant Summary collapse
- @@schema_type =
"SSONameValuePair"
- @@schema_ns =
"http://josso.org/gateway/identity/service/ws/impl"
- @@schema_element =
[["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]], ["value", ["SOAP::SOAPString", XSD::QName.new(nil, "value")]]]
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#value ⇒ Object
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(name = nil, value = nil) ⇒ SSONameValuePair
constructor
A new instance of SSONameValuePair.
Constructor Details
#initialize(name = nil, value = nil) ⇒ SSONameValuePair
Returns a new instance of SSONameValuePair.
12 13 14 15 |
# File 'lib/bak_wsdl_classes.rb', line 12 def initialize(name = nil, value = nil) @name = name @value = value end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
9 10 11 |
# File 'lib/bak_wsdl_classes.rb', line 9 def name @name end |
#value ⇒ Object
Returns the value of attribute value.
10 11 12 |
# File 'lib/bak_wsdl_classes.rb', line 10 def value @value end |