Module: ActiveCMIS::AtomicType
- Defined in:
- lib/active_cmis/atomic_types.rb
Defined Under Namespace
Classes: Boolean, CommonBase, DateTime, Decimal, HTML, ID, Integer, Singleton, String, URI
Constant Summary collapse
- MAPPING =
Map of XML property elements to the corresponding AtomicTypes
{ "propertyString" => ActiveCMIS::AtomicType::String, "propertyBoolean" => ActiveCMIS::AtomicType::Boolean, "propertyId" => ActiveCMIS::AtomicType::ID, "propertyDateTime" => ActiveCMIS::AtomicType::DateTime, "propertyInteger" => ActiveCMIS::AtomicType::Integer, "propertyDecimal" => ActiveCMIS::AtomicType::Decimal, "propertyHtml" => ActiveCMIS::AtomicType::HTML, "propertyUri" => ActiveCMIS::AtomicType::URI, }