a954a606f6cbd9f5e11aaa6381f0c267e1c92830
[moon.git] /
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.aaa.shiro.moon;
10
11
12 import java.io.IOException;
13
14 import javax.servlet.http.HttpServlet;
15 import javax.servlet.http.HttpServletRequest;
16 import javax.servlet.http.HttpServletResponse;
17
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
20
21 public class MoonTokenEndpoint extends HttpServlet{
22
23     private static final long serialVersionUID = 4980356362831585417L;
24     private static final Logger LOG = LoggerFactory.getLogger(MoonTokenEndpoint.class);
25
26     protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
27         LOG.debug("MoonTokenEndpoint Servlet doPost");
28     }
29
30 }