Sha256: 02b8e4d8fa66ff1d03ec214b1ac3c95c000e47f24ced4a1164894b4c137974bd

Contents?: true

Size: 380 Bytes

Versions: 1

Compression:

Stored size: 380 Bytes

Contents

module Maestrano
  module Saml

    # 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
    class AttributeValue < String
      attr_accessor :values
      def initialize(str="", values=[])
        @values = values
        super(str)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
maestrano-0.1.0 lib/maestrano/saml/attribute_value.rb