blob: d9b11e252c3441dd8201b27468928fc00100d8c5 [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.cocoon.sitemap;
import java.util.EventObject;
import org.apache.cocoon.Processor;
import org.apache.cocoon.environment.Environment;
/**
* Base interface for all sitemap events.
*
* @version $Id:$
* @since 2.2
*/
public abstract class SitemapEvent extends EventObject {
private final Environment environment;
/**
* @param source The current processor (sitemap)
* @param env The environment describing the current request
*/
public SitemapEvent(Processor source, Environment env) {
super(source);
this.environment = env;
}
public Processor getSourceProcessor() {
return (Processor)this.getSource();
}
public Environment getEnvironment() {
return this.environment;
}
}