2 * Copyright (c) 2015 Brocade Communications Systems, Inc. and others. All rights reserved.
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
9 package org.opendaylight.aaa.shiro.moon;
12 import java.io.IOException;
14 import javax.servlet.http.HttpServlet;
15 import javax.servlet.http.HttpServletRequest;
16 import javax.servlet.http.HttpServletResponse;
18 import org.slf4j.Logger;
19 import org.slf4j.LoggerFactory;
21 public class MoonTokenEndpoint extends HttpServlet{
23 private static final long serialVersionUID = 4980356362831585417L;
24 private static final Logger LOG = LoggerFactory.getLogger(MoonTokenEndpoint.class);
26 protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
27 LOG.debug("MoonTokenEndpoint Servlet doPost");