*/
@Override
public Collection<String> getConversations(Class<?> clazz, Field field) {
Set<String> fieldConversations = new HashSet<String>();
if (field.isAnnotationPresent(ConversationField.class)) {
ConversationField conversationField = field
.getAnnotation(ConversationField.class);
String[] conversations = conversationField.conversations();
if (conversations.length == 0) {
conversations = getConversationControllerConversations(clazz,
actionSuffix);
}
fieldConversations.addAll(Arrays.asList(conversations));