/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
- package com.atlassian.amps.test.it;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- public class ItServlet extends HttpServlet
- {
- protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
- {
- res.getWriter().write("Hello world this is ITs calling");
- res.getWriter().close();
- }
- }