CouchAttachment couchAttachment = readMethod.getAnnotation(CouchAttachment.class);
if (couchAttachment != null) {
String propertyName = Introspector.decapitalize(readMethod.getName().substring(3));
ignorePropertySet.add(propertyName);
}
CouchRevision couchRevision = readMethod.getAnnotation(CouchRevision.class);
if (couchRevision != null) {
String propertyName = Introspector.decapitalize(readMethod.getName().substring(3));
ignorePropertySet.add(propertyName);
}
CouchId couchId = readMethod.getAnnotation(CouchId.class);