/library/server/rest/tests/src/httpd/nino/rest_application_gateway.e

http://github.com/jocelyn/EiffelWebReloaded · Specman e · 34 lines · 28 code · 6 blank · 0 comment · 0 complexity · 782b9d18c377ee0573e165e0bed7249c MD5 · raw file

  1. deferred class
  2. REST_APPLICATION_GATEWAY
  3. inherit
  4. HTTPD_NINO_APPLICATION
  5. redefine
  6. initialize_server
  7. end
  8. feature -- Access
  9. initialize_server
  10. do
  11. Precursor
  12. base := ""
  13. server.configuration.http_server_port := 8080
  14. server.configuration.force_single_threaded := True
  15. end
  16. base: detachable STRING
  17. gateway_name: STRING = "NINO"
  18. note
  19. copyright: "Copyright (c) 1984-2011, Eiffel Software and others"
  20. license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
  21. source: "[
  22. Eiffel Software
  23. 5949 Hollister Ave., Goleta, CA 93117 USA
  24. Telephone 805-685-1006, Fax 805-685-6869
  25. Website http://www.eiffel.com
  26. Customer support http://support.eiffel.com
  27. ]"
  28. end