Class: EasyData::RDF::CERT

Inherits:
Namespaces show all
Defined in:
lib/data_models/namespaces/cert.rb

Constant Summary collapse

@@uri =
"http://www.w3.org/ns/auth/cert#"
@@properties =
{"decimal" => "",
               "hex" => "",
               "identity" => "",
               "public_key" => "", 
}

Class Method Summary collapse

Methods inherited from Namespaces

list, list_form

Class Method Details

.get_uriObject

Return Namespace URI



12
13
14
# File 'lib/data_models/namespaces/cert.rb', line 12

def self.get_uri
  @@uri
end

.propertiesObject

Return a list of Namespace’s properties



21
22
23
# File 'lib/data_models/namespaces/cert.rb', line 21

def self.properties
   @@properties.keys
end

.properties_formObject



25
26
27
28
29
30
31
# File 'lib/data_models/namespaces/cert.rb', line 25

def self.properties_form 
  list = {}
  @@properties.keys.each do |property|
    list[property] = property
  end
  list
end

.to_s(property, uri, value) ⇒ Object

Return tag to rdf doc



16
17
18
# File 'lib/data_models/namespaces/cert.rb', line 16

def self.to_s(property,uri,value)
   @@properties[property].gsub("%uri%",uri).gsub('%value%',value)
end