}
@Override
public void visitMethod(Method method,
JavaImplementation type) throws IntrospectionException {
ConversationID conversationID = method.getAnnotation(ConversationID.class);
if (conversationID == null) {
return;
}
type.addConversationIDMember(method);
}