Commit 602e4604 authored by Sara Bertocco's avatar Sara Bertocco
Browse files

New working version after Victoria trip - new file

parent 40dd5f4a
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package it.inaf.oats.vospacebackend.implementation;

import org.restlet.Component;
import org.restlet.ext.servlet.ServerServlet;

/**
 *
 * @author bertocco
 */
public class INAFRestletServlet  extends ServerServlet {

    protected Component createComponent()
    {
        Component result = super.createComponent();
        result.getLogService().setEnabled(false);
        return result;
    }
    
}