module ActiveFedora::NamedRelationships

def named_relationships_desc

{:self=>{"audio_records"=>{:type=>AudioRecord, :singular=>nil, :predicate=>:has_part, :inbound=>false}}}
Results in the following returned by named_relationships_desc
has_relationship "audio_records", :has_part, :type=>AudioRecord

For the following relationship
====Example
Return hash that stores named relationship metadata defined by has_relationship calls

** EXPERIMENTAL **
def named_relationships_desc
  @class_named_relationships_desc ||= Hash[:self => {}]
  #class_named_relationships_desc
end