# File lib/openid/stores.rb, line 19
    def ConsumerAssociation.fromExpiresIn(expires_in, server_url,
                                          handle, secret)
      issued = Time.now.to_i
      lifetime = expires_in
      new(server_url, handle, secret, issued, lifetime) 
    end