de.ifgi.mosia.wpswfs.handler.GetCapabilitiesHandler.java Source code

Java tutorial

Introduction

Here is the source code for de.ifgi.mosia.wpswfs.handler.GetCapabilitiesHandler.java

Source

/**
 * Copyright (C) 2014
 * by Institute for Geoinformatics, University of Muenster
 *
 * Contact: http://www.ifgi.de
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package de.ifgi.mosia.wpswfs.handler;

import java.io.IOException;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.http.HttpResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import de.ifgi.mosia.wpswfs.ServiceException;

public class GetCapabilitiesHandler extends ProxyRequestHandler implements RequestHandler {

    private static final Logger logger = LoggerFactory.getLogger(GetCapabilitiesHandler.class);

    @Override
    public boolean supportsRequestType(String request) {
        return "GetCapabilities".equalsIgnoreCase(request);
    }

    @Override
    public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws IOException {
        HttpResponse response;
        try {
            response = executeGetCapabilities(req.getParameterMap());
        } catch (IOException e) {
            logger.warn(e.getMessage(), e);
            throw new IOException("Proxy server issue: " + e.getMessage());
        }

        filterAndWriteResponse(response.getEntity(), response.getStatusLine().getStatusCode(), resp);

    }

    @SuppressWarnings("unchecked")
    private HttpResponse executeGetCapabilities(Map<?, ?> map) throws IOException {
        return executeHttpGet((Map<String, String[]>) map);
    }

    @Override
    public boolean supportsHttpGet() {
        return true;
    }

    @Override
    public boolean supportsHttpPost() {
        return false;
    }

    @Override
    public boolean supportsPostPayload(String payload) {
        return false;
    }

    @Override
    public void handlePostRequest(HttpServletRequest req, HttpServletResponse resp, String payload, String encoding)
            throws IOException, ServiceException {

    }

}