ValueAccessor localIdAccessor = null;
ValueAccessor localRevisionAccessor = null;
String localIdPattern = null;
for (Method readMethod : ClassUtil.listGetterMethods(entityClass)) {
if (readMethod != null) {
CouchAttachment couchAttachment = readMethod.getAnnotation(CouchAttachment.class);
if (couchAttachment != null) {
ValueAccessor attachmentAccessor = new ValueAccessor(entityClass, readMethod);
localAttachmentList.add(new AttachmentMeta(couchAttachment, attachmentAccessor));
}
if (localRevisionAccessor == null) {