Project

General

Profile

1 6264 leinfelder
/**
2
 *  '$RCSfile$'
3
 *  Copyright: 2000 Regents of the University of California and the
4
 *              National Center for Ecological Analysis and Synthesis
5
 *
6
 *   '$Author$'
7
 *     '$Date$'
8
 *
9
 * This program is free software; you can redistribute it and/or modify
10
 * it under the terms of the GNU General Public License as published by
11
 * the Free Software Foundation; either version 2 of the License, or
12
 * (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22
 */
23
package edu.ucsb.nceas.metacat.restservice;
24
25
import java.io.IOException;
26
27
import javax.servlet.ServletException;
28
import javax.servlet.http.HttpServletRequest;
29
import javax.servlet.http.HttpServletResponse;
30
31
32
/**
33
 * Routes MN REST service requests to the appropriate handler
34
 *
35
 */
36 6267 leinfelder
public class MNRestServlet extends D1RestServlet {
37 6264 leinfelder
38
	/**
39 6267 leinfelder
	 * Provide an MNResourceHandler subclass of D1ResourceHandler
40 6264 leinfelder
	 */
41
	@Override
42 6267 leinfelder
    protected D1ResourceHandler createHandler(HttpServletRequest request, HttpServletResponse response)
43 6264 leinfelder
    	throws ServletException, IOException {
44
        return new MNResourceHandler(getServletContext(), request, response);
45
    }
46
47
}