Sha256: ad93e5633160676eaa1dd8d7e5e07f8e6b5cbfd3374bf13ab2d5d9d9ad3d06bd
Contents?: true
Size: 516 Bytes
Versions: 25
Compression:
Stored size: 516 Bytes
Contents
module Saml module Elements class AttributeStatement include Saml::Base tag "AttributeStatement" register_namespace 'saml', Saml::SAML_NAMESPACE namespace 'saml' has_many :attribute, Saml::Elements::Attribute has_many :encrypted_attributes, Saml::Elements::EncryptedAttribute def fetch_attribute(key) attribute = self.attribute.find do |attr| attr.name == key end attribute.attribute_value if attribute end end end end
Version data entries
25 entries across 25 versions & 1 rubygems