Project

General

Profile

1
/**
2
 *  '$RCSfile$'
3
 *  Copyright: 2000 Regents of the University of California and the
4
 *              National Center for Ecological Analysis and Synthesis
5
 *
6
 *   '$Author: leinfelder $'
7
 *     '$Date: 2011-06-30 14:37:03 -0700 (Thu, 30 Jun 2011) $'
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 CN REST service requests to the appropriate handler
34
 *  
35
 */
36
public class CNRestServlet extends D1RestServlet {
37
    
38
	/**
39
	 * Provide a CNResourceHandler subclass of D1ResourceHandler
40
	 */
41
	@Override
42
    protected D1ResourceHandler createHandler(HttpServletRequest request, HttpServletResponse response) 
43
    	throws ServletException, IOException {
44
        return new CNResourceHandler(getServletContext(), request, response);
45
    }
46

    
47
}
(2-2/9)