/maven-amps-plugin/src/it/integrationTestWithTestGroup/src/main/java/com/atlassian/amps/test/it/ItServlet.java

https://bitbucket.org/mmeinhold/amps · Java · 16 lines · 14 code · 2 blank · 0 comment · 0 complexity · 33853af7fe1f39a074bac09cd373b0bf MD5 · raw file

  1. package com.atlassian.amps.test.it;
  2. import javax.servlet.ServletException;
  3. import javax.servlet.http.HttpServlet;
  4. import javax.servlet.http.HttpServletRequest;
  5. import javax.servlet.http.HttpServletResponse;
  6. import java.io.IOException;
  7. public class ItServlet extends HttpServlet
  8. {
  9. protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
  10. {
  11. res.getWriter().write("Hello world this is ITs calling");
  12. res.getWriter().close();
  13. }
  14. }