# HG changeset patch # User robcast # Date 1366196202 -7200 # Node ID ddab72e483e7f9ae7372de1d44e7a68e04e38e9d # Parent 647e8676c8ac9c1ec7c57240c497923afab9838d add some comments. diff -r 647e8676c8ac -r ddab72e483e7 servlet3/src/main/java/digilib/conf/DigilibServlet3Configuration.java --- a/servlet3/src/main/java/digilib/conf/DigilibServlet3Configuration.java Sun Apr 14 19:33:58 2013 +0200 +++ b/servlet3/src/main/java/digilib/conf/DigilibServlet3Configuration.java Wed Apr 17 12:56:42 2013 +0200 @@ -1,11 +1,40 @@ package digilib.conf; +/* + * #%L + * DigilibServlet3Configuration -- Holding all parameters for digilib servlet. + * + * Digital Image Library servlet components + * + * %% + * Copyright (C) 2013 MPIWG Berlin + * %% + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Lesser Public License for more details. + * + * You should have received a copy of the GNU General Lesser Public + * License along with this program. If not, see + * . + * #L% + * Author: Robert Casties (robcast@berlios.de) + */ + import javax.servlet.ServletContext; import javax.servlet.annotation.WebListener; import digilib.servlet.AsyncServletWorker; /** + * Class to hold the digilib servlet configuration parameters. The parameters + * can be read from the digilib-config file and be passed to other servlets or + * beans. * @author casties * */