1 package org.apache.turbine.services.weather; 2 3 /* 4 * Copyright (c) 1997-2000 The Java Apache Project. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * 18 * 3. All advertising materials mentioning features or use of this 19 * software must display the following acknowledgment: 20 * "This product includes software developed by the Java Apache 21 * Project for use in the Apache JServ servlet engine project 22 * <http://java.apache.org/>." 23 * 24 * 4. The names "Apache JServ", "Apache JServ Servlet Engine", "Turbine", 25 * "Apache Turbine", "Turbine Project", "Apache Turbine Project" and 26 * "Java Apache Project" must not be used to endorse or promote products 27 * derived from this software without prior written permission. 28 * 29 * 5. Products derived from this software may not be called "Apache JServ" 30 * nor may "Apache" nor "Apache JServ" appear in their names without 31 * prior written permission of the Java Apache Project. 32 * 33 * 6. Redistributions of any form whatsoever must retain the following 34 * acknowledgment: 35 * "This product includes software developed by the Java Apache 36 * Project for use in the Apache JServ servlet engine project 37 * <http://java.apache.org/>." 38 * 39 * THIS SOFTWARE IS PROVIDED BY THE JAVA APACHE PROJECT "AS IS" AND ANY 40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE JAVA APACHE PROJECT OR 43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 50 * OF THE POSSIBILITY OF SUCH DAMAGE. 51 * 52 * This software consists of voluntary contributions made by many 53 * individuals on behalf of the Java Apache Group. For more information 54 * on the Java Apache Project and the Apache JServ Servlet Engine project, 55 * please see <http://java.apache.org/>. 56 * 57 */ 58 59 60 import org.apache.turbine.services.TurbineBaseService; 61 62 /** 63 * 64 * @author <a HREF="mailto:jvanzyl@apache.org">Jason van Zyl</a> 65 * @occupation somnambulist 66 */ 67 public class TurbineWeatherService extends TurbineBaseService 68 implements WeatherService 69 70 { 71 /** 72 * Initialize the TurbineWeather Service. 73 */ 74 public void init() 75 { 76 setInit(true); 77 } 78 } 79