All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendaylight.aaa.shiro.moon.MoonTokenEndpoint Maven / Gradle / Ivy

There is a newer version: 0.20.1
Show newest version
/*
 * Copyright (c) 2016 Orange and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.aaa.shiro.moon;

import java.io.IOException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class MoonTokenEndpoint extends HttpServlet {

    private static final Logger LOG = LoggerFactory.getLogger(MoonTokenEndpoint.class);
    private static final long serialVersionUID = 4980356362831585417L;

    @Override
    public String getServletName() {
        return MoonTokenEndpoint.class.getSimpleName();
    }

    protected void doPost(final HttpServletRequest req, final HttpServletResponse resp) throws IOException {
        LOG.info("MoonTokenEndpoint Servlet doPost: {} {}", req.getServletPath(), req.getRequestURI());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy