module Neo4j::Core::CypherSession::Adaptors::HasUri
Containing the logic for dealing with adaptors which use URIs
Public Instance Methods
url()
click to toggle source
# File lib/neo4j/core/cypher_session/adaptors/has_uri.rb 44 def url 45 @uri.to_s 46 end
url=(url)
click to toggle source
# File lib/neo4j/core/cypher_session/adaptors/has_uri.rb 48 def url=(url) 49 @uri = self.class.uri_from_url!(url) 50 end
url_without_password()
click to toggle source
# File lib/neo4j/core/cypher_session/adaptors/has_uri.rb 52 def url_without_password 53 @url_without_password ||= "#{scheme}://#{user + ':...@' if user}#{host}:#{port}" 54 end