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);
if (couchId != null) {
String propertyName = Introspector.decapitalize(readMethod.getName().substring(3));
ignorePropertySet.add(propertyName);
}
}