class ActiveFedora::ActiveTripleAttribute

Attributes delegated to ActiveTriples. Allows ActiveFedora to track all attributes consistently.

@example

class Book < ActiveFedora::Base
  property :title, predicate: ::RDF::Vocab::DC.title
  property :author, predicate: ::RDF::Vocab::DC.creator
end

Book.attribute_names
=> ["title", "author"]