# File lib/openshift-origin-controller/lib/openshift/mongo_data_store.rb, line 94 def find_by_uuid(obj_type_of_uuid, uuid) Rails.logger.debug "MongoDataStore.find_by_uuid(#{obj_type_of_uuid}, #{uuid})\n\n" case obj_type_of_uuid when "CloudUser" get_user_by_uuid(uuid) when "Application" get_user_by_app_uuid(uuid) when "Domain" get_user_by_domain_uuid(uuid) when "ApplicationTemplate" find_application_template(uuid) end end