# File lib/openid/association.rb, line 22
    def Association.from_expires_in(expires_in, handle, secret, assoc_type)
      issued = Time.now.to_i
      lifetime = expires_in
      new(handle, secret, issued, lifetime, assoc_type) 
    end