]> WPIA git - gigi.git/blob - src/org/cacert/gigi/api/GigiAPI.java
Adding stub for gigi-api (api.gigi.org)
[gigi.git] / src / org / cacert / gigi / api / GigiAPI.java
1 package org.cacert.gigi.api;
2
3 import java.io.IOException;
4
5 import javax.servlet.ServletException;
6 import javax.servlet.http.HttpServlet;
7 import javax.servlet.http.HttpServletRequest;
8 import javax.servlet.http.HttpServletResponse;
9
10 public class GigiAPI extends HttpServlet {
11         @Override
12         protected void service(HttpServletRequest req, HttpServletResponse resp)
13                         throws ServletException, IOException {
14                 String pi = req.getPathInfo();
15                 if (pi == null) {
16                         return;
17                 }
18         }
19 }