class Pione::Location::LocationScheme

LocationScheme is a URI scheme for Location.

Public Instance Methods

pione?() click to toggle source

Returns true always because classes inheriting BasicScheme are supported by PIONE system. @api private

# File lib/pione/location/location-scheme.rb, line 8
def pione?
  true
end
storage?() click to toggle source

Returns true if the scheme acts as storage. @return [Boolean]

true if the scheme acts as storage
# File lib/pione/location/location-scheme.rb, line 15
def storage?
  self.class.instance_variable_get(:@storage)
end