KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > barracuda > contrib > dbroggisch > page > RenderPageEventGateway


1 /*
2  * Copyright (C) 2003 Diez B. Roggisch [deets@web.de]
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * $Id: RenderPageEventGateway.java,v 1.2 2004/02/01 05:16:27 christianc Exp $
19  */

20 package org.enhydra.barracuda.contrib.dbroggisch.page;
21
22 import org.enhydra.barracuda.core.event.DefaultEventGateway;
23 import org.enhydra.barracuda.core.event.helper.EventConnectorFactory;
24 import org.apache.log4j.Logger;
25
26
27 /**
28  * A simple convenience class providing a ready-set event gateway with the
29  * basic necessities for rendering pages. Unless you are writing your own
30  * custom rendering code for pages, an object of this class must be provided
31  * in your application gateway via
32  * <code>specifyEventGateways(new RenderPageEventGateway())</code> or via
33  * inclusion in your assembly descriptor. If you forget to do this, you will
34  * find that none of your pages render.
35  *
36  * @author <a HREF="mailto:deets@web.de">Diez B. Roggisch</a>
37  * @version 1.0
38  */

39 public class RenderPageEventGateway extends DefaultEventGateway {
40
41     private static final Logger logger = Logger.getLogger(RenderPageEventGateway.class.getName());
42
43     public RenderPageEventGateway() {
44         specifyLocalEventInterests(new EventConnectorFactory(RenderPageHandler.class), RenderPage.class);
45         if (logger.isInfoEnabled()) logger.info("specifyLocalEventInterests(new EventConnectorFactory(RenderPageHandler.class), RenderPage.class);");
46     }
47
48 }
49
Popular Tags