module ActiveFedora::Attributes::PrimaryKey

def to_key

If the id is "/foo:1" then to_key ought to return ["foo:1"]
def to_key
  id && [id]
end