class Maestrano::Saml::AttributeValue

Wrapper for AttributeValue with multiple values It is subclass of String to be backwards compatible Use AttributeValue#values to get all values as an array

Attributes

values[RW]

Public Class Methods

new(str="", values=[]) click to toggle source
Calls superclass method
# File lib/maestrano/saml/attribute_value.rb, line 9
def initialize(str="", values=[])
  @values = values
  super(str.to_s)
end